export default function FooLayout({ modal, children, }: { modal: React.ReactNode children: React.ReactNode }) { return ( <>
{modal}
{children}
) }