import { Footer } from './footer'; import { Header } from './headers/header'; import { PropsWithChildren } from 'react'; export function DefaultLayout({ children }: PropsWithChildren): JSX.Element { return (
); }