import * as S from './layout.styles'; export default function Layout({ children, }: { children: JSX.ElementChildren; }) { return (
{children}
); }