Sha256: 50d8b0207be36b696f1812fe49822253713ec75a89cd4316d6db11d2b5e864cc
Contents?: true
Size: 700 Bytes
Versions: 177
Compression:
Stored size: 700 Bytes
Contents
import React from 'react' import { Select } from '../../' const SelectDisabledOptions = () => { const options = [ { value: '1', disabled: true, text: 'Espresso', }, { value: '2', text: 'Americano', }, { value: '3', disabled: true, text: 'Cappuccino', }, { value: '4', text: 'Mocha', }, { value: '5', text: 'Flat White', }, { value: '6', text: 'Latte', }, ] return ( <div> <Select label="Favorite Coffee" name="coffee" options={options} value="2" /> </div> ) } export default SelectDisabledOptions
Version data entries
177 entries across 177 versions & 1 rubygems