import * as React from 'react'; import s from './Select.module.scss'; type Props = { options: Array; selected: string; onChange: (event: React.ChangeEvent) => any; }; export default function Select({ options, selected, onChange }: Props) { return ( // eslint-disable-next-line jsx-a11y/no-onchange ); }