Sha256: 53be5ee46bee4c05dd4f75fd76a24ee6811be757589ceb969639a6278e96022a
Contents?: true
Size: 500 Bytes
Versions: 4
Compression:
Stored size: 500 Bytes
Contents
// @flow import React from 'react' import { Typeahead } from 'playbook-ui' const options = [ { label: 'Jardim', value: 'Portuguese' }, { label: 'Garten', value: 'German' }, { label: 'Giardino', value: 'Italian' }, { label: 'JardÃn', value: 'Spanish' }, ] const TypeaheadCreateable = (props) => { return ( <Typeahead createable isMulti label="User Created Options" options={options} {...props} /> ) } export default TypeaheadCreateable
Version data entries
4 entries across 4 versions & 2 rubygems