import { ReactNode } from "react"; type ContainerProps = { children: ReactNode; }; const Container = (props: ContainerProps) => { const { children } = props; return
{children}
; }; export default Container;