13 lines
454 B
React
Executable File
13 lines
454 B
React
Executable File
import { Navigate, Outlet } from "react-router-dom";
|
|
|
|
const AuthRoute = ({ redirectPath = "/login", children }) => {
|
|
const isLogin = localStorage.getItem("email");
|
|
const profile = localStorage.getItem("profile")
|
|
|
|
if (!isLogin || !profile || (typeof JSON.parse(profile) == 'object' && JSON.parse(profile).firstname == undefined)) {
|
|
return <Navigate to={redirectPath} replace />;
|
|
}
|
|
return children || <Outlet />;
|
|
};
|
|
|
|
export default AuthRoute; |