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

19 lines
359 B
JavaScript
Raw Normal View History

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