import { ReactNode } from 'react'; import Header from './Header'; type Props = { full?: true; children: ReactNode; className: string; originalPath?: string; }; const Layout = ({ full, children, className, originalPath }: Props) => { return ( <>
{children}
); }; export default Layout;