/
CheateRYT
/
Order_database
Обзор
Документация
Войти
/
CheateRYT
/
Order_database
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
server/client/src/store/newNotificationsStore.ts
13 строк
428 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 { newNotifications: Notification[]; addNewNotifications: (newNotifications: Notification[]) => void; } export const newNotificationsStore = create<StoreState>((setState) => ({ newNotifications: [], addNewNotifications: (newNotifications: Notification[]) => setState({ newNotifications: newNotifications }) }))