authelia/web/src/hooks/State.ts

6 lines
171 B
TypeScript
Raw Normal View History

import { getState } from "../services/State";
import { useRemoteCall } from "./RemoteCall";
export function useAutheliaState() {
return useRemoteCall(getState, []);
}