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.
label
value
interface IOption { label: string, value: string }
import {IOption} from 'uxp/components';
Last updated 1 year ago