This commit is contained in:
2025-07-08 14:54:41 +07:00
commit 644a6f9803
86 changed files with 12422 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { create } from 'zustand'
interface ModalState {
isOpenNotification: boolean;
setIsOpenNotification: (modal: boolean) => void;
}
const useModalStore = create<ModalState>((set, get) => ({
isOpenNotification: false,
setIsOpenNotification: (modal: boolean) => set({ isOpenNotification: modal }),
}));
export default useModalStore;