Convert Header to Typescript

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2026-03-18 20:53:45 +01:00
parent 5b4078e759
commit 5787f941fd
2 changed files with 29 additions and 21 deletions
+1
View File
@@ -16,6 +16,7 @@ export type EventGroup = {
export type EventContextType = {
events: EventGroup[];
updateEvent: () => void;
};
export const EventContext = createContext<EventContextType | null>(null);