import { Footer } from './components/footer'; type TemplateProps = { title: string; body: JSX.Element; }; export default function Template({ title, body }: TemplateProps) { return (

{title}

{body}
); }