23 lines
485 B
JavaScript
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;
|