import React from "react"; export const Option = ({ value, children }) => { return ( ) } export const Select = ({ label = '', value, onChange = () => {}, defaultValue = "", error, name, children }) => { return ( <> {label !== '' && ( )} {error && (

{error}

)} ) }