import { Container, ContainerProps } from "@chakra-ui/react"; interface Props { children: React.ReactNode; wide?: boolean; } const MyContainer: React.FC = ({ children, wide = false, ...props }) => ( {children} ); export default MyContainer;