import { Paper, Divider } from '@mui/material'; import type { FC } from 'react'; import type { RequiredChildrenProps } from 'utils'; interface SectionContentProps extends RequiredChildrenProps { title?: string; id?: string; } const SectionContent: FC = (props) => { const { children, title, id } = props; return ( {title && ( {title} )} {children} ); }; export default SectionContent;