import {ReactElement, ReactNode} from "react" import {Grid, Typography} from "@mui/material" export interface SimpleSectionProps { label: string children: ReactNode } export default function SimpleSection({label, children}: SimpleSectionProps): ReactElement { return ( {label} {children} ) }