import { Box, Flex } from '@metafam/ds'; import React from 'react'; type Props = React.ComponentProps; type BoxProps = React.ComponentProps; export const PageContainer: React.FC = ({ children, ...props }) => ( {children} ); export const FlexContainer: React.FC = ({ children, ...props }) => ( {children} ); export const MaxWidthContainer: React.FC = ({ children, ...props }) => ( {children} );