import FormControl from "./FormControl"; import { Row } from "../styles"; import type { Field } from "../common/constants"; interface Props { fields: Field[]; section: string; } function FormSection(props: Props) { return ( { props.fields.map(field => ( )) } ); } export default FormSection;