import * as React from "react"; import { Row, Col, Form } from "react-bootstrap"; import { FieldSelectProps } from "../types"; export const FieldSelect = ({ name, label, options, isRequired, showLabel = false }: FieldSelectProps) => { return ( {label} {isRequired ? * : null} {options.map((option, i) => { return ; })} ); };