This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/packages/website/src/services/useAuthenticatedStatus.js

6 lines
159 B
JavaScript
Raw Normal View History

2021-04-08 11:10:58 +00:00
import useSWR from "swr";
export default function useAuthenticatedStatus() {
return useSWR("/__internal/do/not/use", (url) => (await fetch(url)).json());
}