import { ReactNode } from 'react'; export default function Container({ children }: { children?: ReactNode }) { return
{children}
; }