enzostvs's picture
enzostvs HF Staff
hf sign in
31f62e8
raw
history blame
285 Bytes
export const useUser = () => {
const openWindowLogin = async () => {
const response = await fetch(`/api/login`);
const { ok, redirect } = await response.json();
if (ok && redirect) {
window.open(redirect, "_blank");
}
};
return {
openWindowLogin,
}
}