UNPKG

react-select

Version:

A Select control built with and for ReactJS

13 lines (7 loc) 383 B
// @flow import type { GroupType, OptionType } from './types'; export const formatGroupLabel = (group: GroupType): string => group.label; export const getOptionLabel = (option: OptionType): string => option.label; export const getOptionValue = (option: OptionType): string => option.value; export const isOptionDisabled = (option: OptionType): boolean => !!option.isDisabled;