export const Layout = ({ children, title, }: { children: any; title: string; }) => { return ( {title}
{children}
); };