fix quantiti

This commit is contained in:
hamid zarghami
2026-01-26 12:48:57 +03:30
parent 3fb908936e
commit 155e1e0b20
2 changed files with 14 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
import { create } from "zustand";
export const useAuthStore = create((set) => ({
phone: "",
setPhone(value) {
set({ phone: value });
},
}));