import React from "react"; import Select, { Props as SelectProps } from "./Select"; type Props = { onChange?: (value: string | string[]) => void; } & Omit; const FormSelect = ({ onChange, ...props }: Props) => (