import { Helmet } from 'dumi'; import type { PropsWithChildren } from 'react'; import React from 'react'; import Footer from '../../slots/Footer'; const IndexLayout: React.FC> = ({ children, ...restProps }) => ( <> {restProps.title} {restProps.desc && }
{children}