mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-13 23:16:47 +00:00
13 lines
409 B
JavaScript
13 lines
409 B
JavaScript
import BLOG from '@/blog.config'
|
|
import { BlogListPage } from './components/BlogListPage'
|
|
import { BlogListScroll } from './components/BlogListScroll'
|
|
import LayoutBase from './LayoutBase'
|
|
|
|
export const LayoutTag = props => {
|
|
return <LayoutBase {...props}>
|
|
{BLOG.POST_LIST_STYLE === 'page' ? <BlogListPage {...props} /> : <BlogListScroll {...props} />}
|
|
</LayoutBase >
|
|
}
|
|
|
|
export default LayoutTag
|