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";
|
2026-07-17 18:17:53 +08:00
|
|
|
// import Search from "./Search";
|
2026-01-05 14:53:49 +08:00
|
|
|
|
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-07-17 18:17: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;
|