import * as React from "react"; import { Row, Col, Form } from "react-bootstrap"; import { FieldSingleProps } from "../types"; export const FieldSingle = ({ name, label, isRequired, showLabel = false }: FieldSingleProps) => { return ( {label && ( {label} {isRequired ? * : null} )} ); };