mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-18 23:16:49 +00:00
10 lines
269 B
JavaScript
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>
|
|
}
|