6 lines
122 B
TypeScript
6 lines
122 B
TypeScript
import { useAuthStore } from "@/store/authStore";
|
|
|
|
export function useAuth() {
|
|
return useAuthStore((state) => state);
|
|
}
|