feat(web): wip query api for notifications

This commit is contained in:
mdatelle
2024-10-04 17:22:13 -04:00
committed by Pujit Mehrotra
parent 924df0dc9e
commit 57802c2ea0
4 changed files with 63 additions and 80 deletions

View File

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