mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
11 lines
397 B
JavaScript
11 lines
397 B
JavaScript
import BLOG from '@/blog.config'
|
|
import BlogPostListPage from './components/BlogPostListPage'
|
|
import BlogPostListScroll from './components/BlogPostListScroll'
|
|
import LayoutBase from './LayoutBase'
|
|
|
|
export const LayoutIndex = (props) => {
|
|
return <LayoutBase {...props}>
|
|
{BLOG.POST_LIST_STYLE === 'page' ? <BlogPostListPage {...props} /> : <BlogPostListScroll {...props} />}
|
|
</LayoutBase>
|
|
}
|