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