export interface IDemoCalendarEvent {
    type: 'primary' | 'normal';
    content: string;
}
