UNPKG

lucid-ui

Version:

A UI component library from AppNexus.

17 lines (16 loc) 551 B
import React from 'react'; import createClass from 'create-react-class'; import { SingleSelect } from '../../../index'; export default createClass({ render: function render() { return /*#__PURE__*/React.createElement("section", { style: { minHeight: 90 } }, /*#__PURE__*/React.createElement(SingleSelect, { Placeholder: "Select a number", Option: [1, 2, 3] })); } }); // begin-hide-from-docs export var notes = "\nIf needed, you can pass your dropdown option data as an array.\n"; // end-hide-from-docs