Files
NotionNext/themes/Medium/LayoutCategory.js
2022-02-13 11:50:11 +08:00

9 lines
230 B
JavaScript

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