interface Props { children: JSX.Element | JSX.Element[]; } export const Layout = (props: Props): JSX.Element => { return (
{props.children}
); };