import { Divider, Stack, Title } from "@mantine/core"; import { FunctionComponent } from "react"; interface SectionProps { header: string; hidden?: boolean; } export const Section: FunctionComponent = ({ header, hidden, children, }) => { return ( ); };