const Label = ({ text, optional }: { text: string; optional?: boolean }) => (

{text}{' '} {optional ? ( (Optional) ) : null}

) export default Label