blob: 8d00f43385aaa02b69bcaa3d68fd0936bf0132a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import * as React from 'react';
import s from './Select.module.scss';
type Props = {
options: Array<string[]>;
selected: string;
} & React.SelectHTMLAttributes<HTMLSelectElement>;
export default function Select({ options, selected, onChange, ...props }: Props) {
return (
// eslint-disable-next-line jsx-a11y/no-onchange
<select className={s.select} value={selected} onChange={onChange} {...props}>
{options.map(([value, name]) => (
<option key={value} value={value}>
{name}
</option>
))}
</select>
);
}
|