import * as React from 'react'; import s from './Select.module.css'; type Props = { options: Array; selected: string; onChange: (event: React.ChangeEvent) => any; }; export default function Select({ options, selected, onChange }: Props) { return ( ); }