UNPKG

lucid-ui

Version:

A UI component library from AppNexus.

17 lines (16 loc) 507 B
import React from 'react'; import { Autocomplete } from '../../../index'; import createClass from 'create-react-class'; export default createClass({ render() { return (React.createElement(Autocomplete, { placeholder: 'Enter a word...', suggestions: [ 'Portland', 'pinky and the brain', 'playa please', 'porridge', 'portal', 'potent potables', 'potent', ] })); }, });