Files
NotionNext/themes/matery/LayoutPage.js
2023-02-06 10:57:29 +08:00

9 lines
227 B
JavaScript

import BlogPostListPage from './components/BlogPostListPage'
import LayoutBase from './LayoutBase'
export const LayoutPage = (props) => {
return <LayoutBase {...props}>
<BlogPostListPage {...props}/>
</LayoutBase>
}