Sha256: b4cc0e6f8de2d3bedeb60eef8bc1aa3117086faea0a4494e352496f4881b5694
Contents?: true
Size: 437 Bytes
Versions: 1978
Compression:
Stored size: 437 Bytes
Contents
import React from 'react' import Select from '../_select' const SelectValueTextSame = (props) => { const options = [ { value: 'Football' }, { value: 'Baseball' }, { value: 'Basketball' }, { value: 'Hockey' }, ] return ( <div> <Select label="Favorite Sport" name="sports" options={options} {...props} /> </div> ) } export default SelectValueTextSame
Version data entries
1,978 entries across 1,978 versions & 2 rubygems