Skip to content
Snippets Groups Projects
PrivateRoutes.js 245 B
Newer Older
Shrey Patel's avatar
Shrey Patel committed
import { Outlet, Navigate } from "react-router-dom";
// import Axios from "axios";

const PrivateRoutes = ({ token }) => {
Shrey Patel's avatar
Shrey Patel committed
  // let auth = {'token':false}
  return token ? <Outlet /> : <Navigate to="/login" />;
};
Shrey Patel's avatar
Shrey Patel committed
export default PrivateRoutes;