15 lines
318 B
JavaScript
15 lines
318 B
JavaScript
import ChartInfoPanel from "./ChartInfoPanel";
|
|
import TextInfoPanel from "./TextInfoPanel";
|
|
import styles from "./index.module.less";
|
|
|
|
function InfoLayout() {
|
|
return (
|
|
<div className={styles.infoLayout}>
|
|
<TextInfoPanel />
|
|
<ChartInfoPanel type={"sst"} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default InfoLayout;
|