This commit is contained in:
ValdiANS
2025-09-26 11:06:31 +07:00
parent a5524686a6
commit 2e1b0fef2b
36 changed files with 8716 additions and 79 deletions
+12
View File
@@ -0,0 +1,12 @@
'use client';
import { create } from 'zustand';
import { devtools } from 'zustand/middleware';
import { UIStore } from '@/types/stores';
export const useUiStore = create<UIStore>()(
devtools((...args) => ({}), {
name: 'UIStore',
})
);