mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-18 07:26:48 +00:00
14 lines
324 B
JavaScript
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>
|
|
|
|
{/* 这里不显示分页组件,首页只展示部分即可 */}
|
|
</>
|
|
)
|
|
}
|