/** * Title Component. */ const Title = ({ option: { label = '', elementType = '' } }) => ( <>

{label}

) export default Title