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

23 lines
485 B
JavaScript

import Bottom from "./Bottom";
import Btn from "./Btn";
import LeftPanel from "./LeftPanel";
import RightPanel from "./RightPanel";
import Search from "./Search";
import "./index.less";
function IndexInfo(props) {
return (
<div className="index_info_container">
<div className="index_info_con">
<LeftPanel />
<Bottom />
<RightPanel />
</div>
<Search />
<Btn history={props.history} />
</div>
);
}
export default IndexInfo;