import * as React from "react"; import { Row, Col, Form } from "react-bootstrap"; import { FieldBasicProps } from "../types"; export const FieldName = ({ isRequired = true, showLabel = false }: FieldBasicProps) => { return ( First Name {isRequired ? * : null} Last Name {isRequired ? * : null} ); };