mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 23:16:49 +00:00
10 lines
308 B
JavaScript
10 lines
308 B
JavaScript
import BlogPostListPage from './components/BlogPostListPage'
|
|
import LayoutBase from './LayoutBase'
|
|
|
|
export const LayoutPage = (props) => {
|
|
const { page, posts, postCount } = props
|
|
return <LayoutBase {...props}>
|
|
<BlogPostListPage page={page} posts={posts} postCount={postCount} />
|
|
</LayoutBase>
|
|
}
|