mirror of
https://github.com/TurTaskProject/TurTaskWeb.git
synced 2025-12-18 21:44:07 +01:00
8 lines
242 B
JavaScript
8 lines
242 B
JavaScript
import { Navigate, Outlet } from "react-router-dom";
|
|
import { useAuth } from "src/hooks/AuthHooks";
|
|
|
|
export const PublicRoute = () => {
|
|
const { isAuthenticated } = useAuth();
|
|
return isAuthenticated ? <Navigate to="/d" /> : <Outlet />;
|
|
};
|