feat(FE-40): create MainUiSlice type

This commit is contained in:
ValdiANS
2025-10-01 13:45:25 +07:00
parent a5b392ae76
commit 8206f7de5f
+6 -1
View File
@@ -1 +1,6 @@
export type UIStore = {}; type MainUiSlice = {
mainDrawerOpen: boolean;
setMainDrawerOpen: (open: boolean) => void;
};
export type UIStore = MainUiSlice;