6 lines
126 B
TypeScript
6 lines
126 B
TypeScript
|
|
import { useAuthStore } from "../stores/auth";
|
||
|
|
|
||
|
|
|
||
|
|
export function useToken() {
|
||
|
|
return useAuthStore(state => state.token);
|
||
|
|
}
|