Files
UTMS-NG-FE/hooks/useAuth.ts
2026-04-21 06:30:48 +07:00

6 lines
122 B
TypeScript

import { useAuthStore } from "@/store/authStore";
export function useAuth() {
return useAuthStore((state) => state);
}