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

{title}

{body}
); }