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