office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
14 lines (13 loc) • 423 B
TypeScript
import * as React from 'react';
export interface ICalendarInlineExampleState {
selectedDate: Date;
}
export interface ICalendarInlineExampleProps {
isMonthPickerVisible: boolean;
}
export declare class CalendarInlineExample extends React.Component<ICalendarInlineExampleProps, ICalendarInlineExampleState> {
constructor();
render(): JSX.Element;
private _onDismiss();
private _onSelectDate(date);
}