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