This commit introduces a new component `AuthRedirect` which checks if a user is already logged in. If the user is logged in and attempts to access the /login or /register pages, they will be redirected to the /console page. Otherwise, the respective authentication form (Login or Register) will be rendered. The `App.js` file has been updated to utilize this new `AuthRedirect` component for the /login and /register routes.
14 lines
278 B
JavaScript
14 lines
278 B
JavaScript
import React from 'react';
|
|
import { Navigate } from 'react-router-dom';
|
|
|
|
const AuthRedirect = ({ children }) => {
|
|
const user = localStorage.getItem('user');
|
|
|
|
if (user) {
|
|
return <Navigate to="/console" replace />;
|
|
}
|
|
|
|
return children;
|
|
};
|
|
|
|
export default AuthRedirect;
|