@capaj/react-datetime
Version:
A lightweight but complete datetime picker React.js component
13 lines (12 loc) • 319 B
TypeScript
import React from 'react';
declare const viewComponents: {
days: any;
months: any;
years: any;
time: any;
};
declare function CalendarContainer(props: {
view: keyof typeof viewComponents;
viewProps: any;
}): React.CElement<any, React.Component<any, any, any>>;
export default CalendarContainer;