IOption
An individual item in a Select list. The label is what is shown to the user. The value is what is internally stored and available as the value prop.
interface IOption {
label: string,
value: string
}Usage
import {IOption} from 'uxp/components';Last updated