react-day-picker
Version:
Customizable Date Picker for React
10 lines (9 loc) • 370 B
TypeScript
/** The props for the [[Table]] component. */
export interface TableProps {
/** The ID of the label of the table (the same given to the Caption). */
['aria-labelledby']?: string;
/** The month where the table is displayed. */
displayMonth: Date;
}
/** Render the table with the calendar. */
export declare function Table(props: TableProps): JSX.Element;