UNPKG

flowviz

Version:

A framework which provides seamless integration with other phylogenetic tools and frameworks, while allowing workflow scheduling and execution, through the Apache Airflow workflow system.

9 lines (6 loc) 237 B
import React from "react"; import { Navigate, Outlet } from "react-router-dom"; export default function PrivateRoute() { const auth = JSON.parse(localStorage.getItem("auth")); return auth ? <Outlet /> : <Navigate to="/login" />; }