zcloud-gbs-bi-react/src/pages/Container/Map/components/Content/IndexInfo/index.js

21 lines
427 B
JavaScript
Raw Normal View History

2026-01-16 14:53:53 +08:00
import Bottom from "./Bottom";
2026-01-16 17:18:09 +08:00
import Btn from "./Btn";
2026-01-16 14:53:53 +08:00
import LeftPanel from "./LeftPanel";
import RightPanel from "./RightPanel";
import Search from "./Search";
2026-01-05 14:53:49 +08:00
import "./index.less";
2026-01-16 17:18:09 +08:00
function IndexInfo(props) {
2026-01-05 14:53:49 +08:00
return (
<div className="index_info_container">
2026-01-21 10:16:36 +08:00
<LeftPanel />
<Bottom />
<RightPanel />
2026-01-16 14:53:53 +08:00
<Search />
2026-01-16 17:18:09 +08:00
<Btn history={props.history} />
2026-01-05 14:53:49 +08:00
</div>
);
}
export default IndexInfo;