import React, { type PropsWithChildren } from 'react'; import Footer from '../../slots/Footer'; import Header from '../../slots/Header'; /** * 首页布局 */ const IndexLayout: React.FC = (props) => { const { children } = props; return ( <>
{children}