UNPKG

@nateradebaugh/react-datetime

Version:

A lightweight but complete datetime picker React.js component

16 lines (15 loc) 660 B
import * as React from "react"; import { TimeViewProps } from "./TimeView"; import { DaysViewProps } from "./DaysView"; import { MonthsViewProps } from "./MonthsView"; import { YearsViewProps } from "./YearsView"; import { ViewMode } from "./."; interface CalendarContainerProps { viewMode: ViewMode | undefined; isStatic: boolean; id?: string; className?: string; style?: React.CSSProperties; } declare const CalendarContainer: React.ForwardRefExoticComponent<CalendarContainerProps & TimeViewProps & DaysViewProps & MonthsViewProps & YearsViewProps & React.RefAttributes<HTMLDivElement>>; export default CalendarContainer;