Sha256: 2f3168df1353605c578379d55c88911d9264f156cce138bfcd0d564ad6e12fcb
Contents?: true
Size: 448 Bytes
Versions: 177
Compression:
Stored size: 448 Bytes
Contents
import React from 'react' import { Select } from '../../' const SelectRequired = () => { const options = [ { value: 'Left' }, { value: 'Right' }, { value: 'I go without laces' }, ] return ( <div> <Select blankSelection="Select One..." label="Which shoe do you tie first?" name="shoe" options={options} required /> </div> ) } export default SelectRequired
Version data entries
177 entries across 177 versions & 1 rubygems