UIKit/lib/hooks/useToken.ts

6 lines
126 B
TypeScript
Raw Normal View History

2023-07-10 16:17:54 +00:00
import { useAuthStore } from "../stores/auth";
export function useToken() {
return useAuthStore(state => state.token);
}