UNPKG

@capaj/react-datetime

Version:

A lightweight but complete datetime picker React.js component

16 lines 480 B
import React from 'react'; import DaysView from './DaysView'; import MonthsView from './MonthsView'; import YearsView from './YearsView'; import TimeView from './TimeView'; const viewComponents = { days: DaysView, months: MonthsView, years: YearsView, time: TimeView }; function CalendarContainer(props) { return React.createElement(viewComponents[props.view], props.viewProps); } export default CalendarContainer; //# sourceMappingURL=CalendarContainer.js.map