refactor(web): instantiate apollo client statically instead of dynamically

This commit is contained in:
Pujit Mehrotra
2024-10-16 09:44:07 -04:00
parent 4e555021a7
commit 6cac078e15
11 changed files with 406 additions and 275 deletions

View File

@@ -1,10 +0,0 @@
export interface NotificationItemProps {
id: string;
title: string;
subject: string;
description: string;
importance: string;
link: string;
type: 'success' | 'warning' | 'alert';
timestamp: string;
}