import { StateUpdater } from 'preact/hooks' import { JSX } from 'preact/jsx-runtime' type Props = { options: Record value: T setValue?: StateUpdater } export const Select = ({ options, value, setValue }: Props) => { const optionValues = new Set(Object.keys(options)) return (
expand_more
) }