mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 15:09:22 +00:00
11 lines
220 B
JavaScript
11 lines
220 B
JavaScript
import { BlogList } from './components/BlogList'
|
|
import LayoutBase from './LayoutBase'
|
|
|
|
export const LayoutPage = props => {
|
|
return (
|
|
<LayoutBase {...props}>
|
|
<BlogList {...props} />
|
|
</LayoutBase>
|
|
)
|
|
}
|