23 lines
554 B
TypeScript
23 lines
554 B
TypeScript
import { useState, useEffect } from "react";
|
|
|
|
import LoginPage from "./LoginPage";
|
|
import { useNavigate } from "react-router-dom";
|
|
|
|
function App(): JSX.Element {
|
|
const navigate = useNavigate();
|
|
const [authority, setAuthority] = useState(0);
|
|
|
|
useEffect(() => {
|
|
if (authority === 1) {
|
|
navigate("/admin");
|
|
} else if (authority === 2) {
|
|
navigate("/pm");
|
|
} else if (authority === 3) {
|
|
navigate("/yourProjects");
|
|
}
|
|
}, [authority, navigate]);
|
|
|
|
return <LoginPage setAuthority={setAuthority} />;
|
|
}
|
|
|
|
export default App;
|