mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-25 22:09:36 +02:00
UI notification/alert system with global redux state
This commit is contained in:
parent
c145888aec
commit
4eaf9659d1
17 changed files with 279 additions and 10 deletions
8
client/src/interfaces/Notification.ts
Normal file
8
client/src/interfaces/Notification.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
export interface NewNotification {
|
||||
title: string;
|
||||
message: string;
|
||||
}
|
||||
|
||||
export interface Notification extends NewNotification {
|
||||
id: number;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue