import { Box, BoxProps } from "@mui/material"; import React, { PropsWithChildren } from "react"; export const Container: React.FC< PropsWithChildren<{ boxProps?: BoxProps }> > = ({ children, boxProps = {} }) => ( {children} );