2024-09-05 16:04:04 +08:00
|
|
|
import { Layout } from 'antd';
|
|
|
|
|
import React from 'react';
|
|
|
|
|
import SearchSidebar from './sidebar';
|
2024-09-05 12:12:44 +08:00
|
|
|
|
2024-09-05 16:04:04 +08:00
|
|
|
const { Header, Content, Footer } = Layout;
|
2024-09-05 12:12:44 +08:00
|
|
|
|
2024-09-05 09:33:05 +08:00
|
|
|
const SearchPage = () => {
|
2024-09-05 12:12:44 +08:00
|
|
|
return (
|
|
|
|
|
<Layout hasSider>
|
2024-09-05 16:04:04 +08:00
|
|
|
<SearchSidebar></SearchSidebar>
|
2024-09-05 12:12:44 +08:00
|
|
|
<Layout style={{ marginInlineStart: 200 }}>
|
|
|
|
|
<Header style={{ padding: 0 }} />
|
|
|
|
|
<Content style={{ margin: '24px 16px 0', overflow: 'initial' }}>
|
|
|
|
|
<div
|
|
|
|
|
style={{
|
|
|
|
|
padding: 24,
|
|
|
|
|
textAlign: 'center',
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<p>long content</p>
|
|
|
|
|
{
|
|
|
|
|
// indicates very long content
|
|
|
|
|
Array.from({ length: 100 }, (_, index) => (
|
|
|
|
|
<React.Fragment key={index}>
|
|
|
|
|
{index % 20 === 0 && index ? 'more' : '...'}
|
|
|
|
|
<br />
|
|
|
|
|
</React.Fragment>
|
|
|
|
|
))
|
|
|
|
|
}
|
|
|
|
|
</div>
|
|
|
|
|
</Content>
|
|
|
|
|
<Footer style={{ textAlign: 'center' }}>
|
|
|
|
|
Ant Design ©{new Date().getFullYear()} Created by Ant UED
|
|
|
|
|
</Footer>
|
|
|
|
|
</Layout>
|
|
|
|
|
</Layout>
|
|
|
|
|
);
|
2024-09-05 09:33:05 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default SearchPage;
|