semantic-ui-calendar-react
Version:
date/time picker built from semantic-ui elements
8 lines (7 loc) • 437 B
TypeScript
/// <reference types="react" />
import BaseCalendarView, { BaseCalendarViewProps, CalendarWithOptionalHeaderViewProps, SingleSelectionCalendarViewProps } from './BaseCalendarView';
declare type HourViewProps = BaseCalendarViewProps & SingleSelectionCalendarViewProps & CalendarWithOptionalHeaderViewProps;
declare class HourView extends BaseCalendarView<HourViewProps, any> {
render(): JSX.Element;
}
export default HourView;