Idea React
    Preparing search index...

    Interface MonthCalendarProps

    interface MonthCalendarProps {
        locale?: string;
        onChange?: (date: Date) => any;
        onSelect?: (value: DateData) => any;
        value?: DateData[];
    }

    Hierarchy

    • Omit<TableProps, "variant" | "onChange" | "onSelect">
    • Pick<ButtonProps, "variant">
      • MonthCalendarProps
    Index

    Properties

    locale?: string
    onChange?: (date: Date) => any
    onSelect?: (value: DateData) => any
    value?: DateData[]