import { Layout } from 'antd'; import React from 'react'; import SearchSidebar from './sidebar'; const { Header, Content, Footer } = Layout; const SearchPage = () => { return (

long content

{ // indicates very long content Array.from({ length: 100 }, (_, index) => ( {index % 20 === 0 && index ? 'more' : '...'}
)) }
); }; export default SearchPage;