summaryrefslogtreecommitdiff
path: root/src/components/shared/Select.tsx
blob: de409cb0fe80f2fe578d2ecc35be2b9aeaf279f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import * as React from 'react';

import s from './Select.module.scss';

type Props = {
  options: Array<string[]>;
  selected: string;
  onChange: (event: React.ChangeEvent<HTMLSelectElement>) => any;
};

export default function Select({ options, selected, onChange }: Props) {
  return (
    // eslint-disable-next-line jsx-a11y/no-onchange
    <select className={s.select} value={selected} onChange={onChange}>
      {options.map(([value, name]) => (
        <option key={value} value={value}>
          {name}
        </option>
      ))}
    </select>
  );
}