Files
NotionNext/themes/gitbook/LayoutIndex.js
tangly1024 190bc50d9a gitbook
2023-06-23 19:55:01 +08:00

13 lines
340 B
JavaScript

import LayoutBase from './LayoutBase'
import Announcement from './components/Announcement'
import ArticleInfo from './components/ArticleInfo'
export const LayoutIndex = (props) => {
return <LayoutBase {...props}>
{/* gitbook主题首页只显示公告 */}
<Announcement {...props}/>
</LayoutBase>
}
export default LayoutIndex