update register page ui and api

This commit is contained in:
Samandar Turgunboyev
2026-02-24 11:28:06 +05:00
parent 0c9e0811ea
commit 8edd45d1ad
18 changed files with 14795 additions and 313 deletions

View File

@@ -0,0 +1,11 @@
import { create } from "zustand";
type State = {
referal: string;
setReferal: (referal: string) => void;
}
export const useRegisterForm = create<State>((set) => ({
referal: '',
setReferal: (referal) => set({ referal }),
}))