Files
NotionNext/themes/Hexo/LayoutIndex.js
tangly1024 849566ae16 Hexo主题
2022-01-19 17:22:36 +08:00

10 lines
269 B
JavaScript

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