import { useNavigate } from "react-router-dom" import { useAuth } from "../../../Auth"; export const GratitudeControl = () => { const navigate = useNavigate(); const {isAuthenticated} = useAuth(); if(isAuthenticated) return (
{
{ navigate("/select-user") }}>
}
) else return (<>); }