Skip to content

Commit

Permalink
added a dummy data
Browse files Browse the repository at this point in the history
  • Loading branch information
Codebox124 committed Nov 28, 2023
1 parent 3462d39 commit 509bd64
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/state/notificationStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,16 @@ type Store = {
const useNotificationStore = create<Store>()(
persist(
devtools((set, get) => ({
notification: [],
notification: [
{
id: "1",
avatar: "",
message:"Hello world",
name:"Hello world",
time: new Date() ,
userId:"1"
}
],

// fetchNotifications: async () => {
// try {
Expand Down

0 comments on commit 509bd64

Please sign in to comment.