react-calendar-full
Version:
A full-featured React calendar component with event scheduling and monthly, weekly, and daily views.
10 lines (9 loc) • 322 B
TypeScript
import React from 'react';
import CalendarEventStore from '../calendar-event-store';
interface Props {
activeDate: Date;
eventStore: CalendarEventStore;
onDayClick: (date: Date) => void;
}
declare const MonthView: ({ activeDate, eventStore, onDayClick }: Props) => React.JSX.Element;
export default MonthView;