| 1 | import { ChangeEvent, useEffect } from 'react'; |
| 2 | import { OutlinedInput } from '@mui/material'; |
| 3 | interface SelectProps { |
| 4 | [key: string]: any, |
| 5 | onChange: Function |
| 6 | } |
| 7 | export default function Select(props: SelectProps) { |
| 8 | const { eventMap, is, className = '', defaultValue, value, label = '', onChange, options = [], ...prop } = props; |
| 9 | function handleChange(event: ChangeEvent<HTMLInputElement>) { |
nothing calls this directly
no outgoing calls
no test coverage detected