mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 15:09:22 +00:00
10 lines
305 B
JavaScript
10 lines
305 B
JavaScript
import BlogPostListPage from './components/BlogPostListPage'
|
|
import LayoutBase from './LayoutBase'
|
|
|
|
export const LayoutIndex = (props) => {
|
|
// const { posts, tags, meta, categories, postCount, latestPosts } = props
|
|
return <LayoutBase {...props}>
|
|
<BlogPostListPage {...props}/>
|
|
</LayoutBase>
|
|
}
|