/
CheateRYT
/
Order_database
Обзор
Документация
Войти
/
CheateRYT
/
Order_database
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
server/client/src/store/updateNotificationsStore.ts
13 строк
446 B
Lev Rednikov
Add: All zustand stores
08 июн 2024, 00:40
08 июн 2024, 00:40
9bde199
Код
Авторство
О чём код?
import { create } from "zustand"; import {Notification} from "@prisma/client"; interface StoreState { updateNotifications: Notification[]; addUpdateNotifications: (newNotifications: Notification[]) => void; } export const updateNotificationsStore = create<StoreState>((setState) => ({ updateNotifications: [], addUpdateNotifications: (newNotifications: Notification[]) => setState({ updateNotifications: newNotifications }) }))