20 lines
415 B
JavaScript
20 lines
415 B
JavaScript
import Bottom from "./Bottom";
|
|
import Btn from "./Btn";
|
|
import LeftPanel from "./LeftPanel";
|
|
import RightPanel from "./RightPanel";
|
|
// import Search from "./Search";
|
|
|
|
function IndexInfo(props) {
|
|
return (
|
|
<div className="index_info_container">
|
|
<LeftPanel />
|
|
<Bottom />
|
|
<RightPanel />
|
|
{/* <Search /> */}
|
|
<Btn history={props.history} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default IndexInfo;
|