Sha256: 1792a253dba1efa722c5daefc321ef0e587aae287f4b9858da94e5c123bdeb47
Contents?: true
Size: 429 Bytes
Versions: 85
Compression:
Stored size: 429 Bytes
Contents
// @flow import React from 'react' import { Typeahead } from '../../' const options = [ { label: 'Orange', value: '#FFA500' }, { label: 'Red', value: '#FF0000' }, { label: 'Green', value: '#00FF00' }, { label: 'Blue', value: '#0000FF' }, ] const TypeaheadDefault = (props) => { return ( <Typeahead label="Colors" options={options} {...props} /> ) } export default TypeaheadDefault
Version data entries
85 entries across 85 versions & 1 rubygems