UNPKG

react-schedule-meeting

Version:
12 lines (11 loc) 357 B
import { Locale } from 'date-fns'; import React from 'react'; import { StartTimeEvent } from './ScheduleMeeting'; type CalendarProps = { startTimeEventsList: StartTimeEvent[]; onDaySelected: (day: Date) => void; selectedDay: Date; locale?: Locale; }; declare const ScheduleCalendar: React.FC<CalendarProps>; export default ScheduleCalendar;