Convert CreateEventBtn to Typescript
This commit is contained in:
@@ -17,6 +17,7 @@ export type EventGroup = {
|
||||
export type EventContextType = {
|
||||
events: EventGroup[];
|
||||
updateEvent: () => void;
|
||||
addEvent: (name: string, description: string, start: string, end: string) => Promise<void>;
|
||||
};
|
||||
|
||||
export const EventContext = createContext<EventContextType | null>(null);
|
||||
Reference in New Issue
Block a user