mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
11 lines
255 B
JavaScript
11 lines
255 B
JavaScript
import LayoutBase from './LayoutBase'
|
|
import BlogPostListPage from './components/BlogPostListPage'
|
|
|
|
export const LayoutPage = (props) => {
|
|
return <LayoutBase {...props}>
|
|
<BlogPostListPage {...props} />
|
|
</LayoutBase>
|
|
}
|
|
|
|
export default LayoutPage
|