@abbl/material-calendar
Version:
Calendar component build with React and Material-UI
13 lines (12 loc) • 409 B
TypeScript
import React from 'react';
import CalendarEvent from '../../../../common/api/CalendarEvent';
export interface DayEvent {
calendarEvent: CalendarEvent;
cellHeight: number;
orderInChain: number;
chainCount: {
count: number;
};
onClick?: (event: React.MouseEvent<any, any>, calendarEvent?: CalendarEvent) => void;
}
export default function DayEvent(props: DayEvent): JSX.Element;