2023-09-14 09:48:22 +08:00

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;