type Props = { children?: React.ReactNode; }; const Container = ({ children }: Props) => { return
{children}
; }; export default Container;