Idea React
    Preparing search index...

    Interface SelectProps

    interface SelectProps {
        onChange?: (value: string) => any;
        value?: string;
        valueRender?: (value: string) => ReactNode;
    }

    Hierarchy

    • Omit<OptionProps, "onChange">
    • Pick<DropdownButtonProps, "variant" | "menuVariant">
      • SelectProps
    Index
    onChange?: (value: string) => any
    value?: string
    valueRender?: (value: string) => ReactNode