UNPKG

lucid-ui

Version:

A UI component library from AppNexus.

19 lines 537 B
import React from 'react'; import createClass from 'create-react-class'; import { DateSelect } from '../../../index'; import timemachine from 'timemachine'; timemachine.config({ dateString: 'December 25, 2018 13:12:59' }); export default createClass({ render: function render() { return /*#__PURE__*/React.createElement("section", { style: { maxWidth: 400 } }, /*#__PURE__*/React.createElement(DateSelect, { initialMonth: new Date(2016, 1), selectedDays: new Date(2016, 1, 17) })); } });