UNPKG

@gechiui/components

Version:
18 lines (13 loc) 362 B
/** * Internal dependencies */ import DatePicker from '../date'; /** * GeChiUI dependencies */ import { useState } from '@gechiui/element'; export default { title: 'Components/DatePicker', component: DatePicker }; export const _default = () => { const [ date, setDate ] = useState(); return <DatePicker currentDate={ date } onChange={ setDate } />; };