mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
11 lines
377 B
JavaScript
11 lines
377 B
JavaScript
import BlogPostListPage from './components/BlogPostListPage'
|
|
import Header from './components/Header'
|
|
import CONFIG_HEXO from './config_hexo'
|
|
import LayoutBase from './LayoutBase'
|
|
|
|
export const LayoutIndex = (props) => {
|
|
return <LayoutBase {...props} headerSlot={CONFIG_HEXO.HOME_BANNER_ENABLE && <Header {...props}/>}>
|
|
<BlogPostListPage {...props}/>
|
|
</LayoutBase>
|
|
}
|