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