Sha256: a3725df3631864b0d82df62d3495d9dc4d19bc04e9961e1546513449401bf757
Contents?: true
Size: 721 Bytes
Versions: 104
Compression:
Stored size: 721 Bytes
Contents
import React from 'react' import { FormGroup, Select, TextInput } from '../../' const FormGroupSelect = (props) => { const options = [ { value: 'Country' }, { value: 'Pop' }, { value: 'Rock' }, { value: 'Hip-Hop/Rap' }, { value: 'Classical' }, { value: 'Gospel' }, { value: 'Alternative' }, { value: 'Indie' }, { value: 'Other' }, ] return ( <div> <FormGroup> <TextInput label="Artist" placeholder="Enter Artist Name" {...props} /> <Select blankSelection="Genre" options={options} {...props} /> </FormGroup> </div> ) } export default FormGroupSelect
Version data entries
104 entries across 104 versions & 1 rubygems