import React, { useState } from 'react'
import { ISelect } from './Select.interface'
import { StyledSelect } from './Select.theme'
const Select = ({ options, value, onChange }: ISelect) => {
return (
//
// {options.map(option => (
//
// ))}
//
<>
{options.map(option => (
))}
>
)
}
export default Select