Files
NotionNext/themes/hexo/LayoutIndex.js
2022-03-30 15:34:25 +08:00

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>
}