import { ReactNode } from 'react'; type Props = { children: ReactNode; }; export default function LayoutBody( { children }: Props ) { return (