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