interface PageContainerProps { title?: string children: React.ReactNode } const PageContainer: React.FC = (props) => { const { title, children } = props return (
{title && (

{title}

)} {children}
) } export { PageContainer }