mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 23:16:49 +00:00
12 lines
229 B
JavaScript
12 lines
229 B
JavaScript
|
|
import { BlogList } from './components/BlogList'
|
|
import LayoutBase from './LayoutBase'
|
|
|
|
export const LayoutIndex = props => {
|
|
return (
|
|
<LayoutBase {...props}>
|
|
<BlogList {...props} page={1} />
|
|
</LayoutBase>
|
|
)
|
|
}
|