"use client"; import useGetCurrentUser from "@/_hooks/useGetCurrentUser"; import useSignIn from "@/_hooks/useSignIn"; const LoginButton: React.FC = () => { const { signInWithKeyCloak } = useSignIn(); const { user, loading } = useGetCurrentUser(); if (loading || user) { return
; } return (
); }; export default LoginButton;