home page

This commit is contained in:
hamid zarghami
2024-12-28 12:32:45 +03:30
parent 4c224236da
commit 50df161858
18 changed files with 303 additions and 6 deletions
+13
View File
@@ -0,0 +1,13 @@
import { create } from "zustand";
import { AuthStoreType } from "../auth/types/AuthTypes";
export const useAuthStore = create<AuthStoreType>((set) => ({
phone: "",
setPhone(value) {
set({ phone: value });
},
stepLogin: 1,
setStepLogin(value) {
set({ stepLogin: value });
},
}));