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