import { StateUpdater } from 'preact/hooks' import { JSX } from 'preact/jsx-runtime' type Props = { options: Record value: string setValue?: StateUpdater } export const Select = ({ options, value, setValue }: Props) => (
expand_more
)