import React from 'react'; // value: ID, options: Set<{id: ID, label: string}>, onChange: ID => null, onClick: event => void export function SelectInput({ value, options, onChange, onClick }) { return ( ); }