Sha256: add492108d3b3bdeefce167a7e28108810973c2d0b767b98d5f78c469354577b
Contents?: true
Size: 433 Bytes
Versions: 975
Compression:
Stored size: 433 Bytes
Contents
// @flow import React from 'react' import Typeahead from '../_typeahead' 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
975 entries across 975 versions & 2 rubygems