ai-gateway/web/default/src/components/PrivateRoute.js
2024-01-01 18:55:03 +08:00

13 lines
285 B
JavaScript

import { Navigate } from 'react-router-dom';
import { history } from '../helpers';
function PrivateRoute({ children }) {
if (!localStorage.getItem('user')) {
return <Navigate to='/login' state={{ from: history.location }} />;
}
return children;
}
export { PrivateRoute };