Files
NotionNext/themes/game/components/BlogListPage.js
2024-03-20 18:40:06 +08:00

14 lines
324 B
JavaScript

import { GameListIndexCombine } from './GameListIndexCombine'
export const BlogListPage = props => {
return (
<>
<div id='posts-wrapper' className='my-4 select-none'>
<GameListIndexCombine {...props} />
</div>
{/* 这里不显示分页组件,首页只展示部分即可 */}
</>
)
}