import Option from "./Option";
function Select({ id, name, label, options, value, onChangeHandler }) {
  const optionsList = options.map((option) => {
    const optionValue = option.replace(" ", "-");
    return ;
  });
  return (
    <>
      {label ? (
        
      ) : (
        ""
      )}
      
    >
  );
}
export default Select;