Files
NotionNext/themes/medium/LayoutIndex.js
2022-03-16 09:42:54 +08:00

9 lines
228 B
JavaScript

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