UNPKG

lucid-ui

Version:

A UI component library from AppNexus.

15 lines (14 loc) 491 B
import React from 'react'; import createClass from 'create-react-class'; import { SingleSelect } from '../../../index'; export default createClass({ render() { return (React.createElement("section", { style: { minHeight: 90 } }, React.createElement(SingleSelect, { Placeholder: 'Select a number', Option: [1, 2, 3] }))); }, }); // begin-hide-from-docs export const notes = ` If needed, you can pass your dropdown option data as an array. `; // end-hide-from-docs