All checks were successful
Test CI / build (push) Successful in 16s
- 기능 구현 1차 완료(동작 확인 필요)
28 lines
1012 B
TypeScript
28 lines
1012 B
TypeScript
import './App.css';
|
|
import SignUpPage from './ui/page/account/signup/SignUpPage';
|
|
import Layout from './layouts/Layout';
|
|
import { BrowserRouter as Router, Routes, Route, Navigate } from 'react-router-dom';
|
|
import { useAuthStore } from './store/authStore';
|
|
import { PageRouting } from './const/PageRouting';
|
|
import LoginPage from './ui/page/account/login/LoginPage';
|
|
import ResetPasswordPage from './ui/page/account/resetPassword/ResetPasswordPage';
|
|
|
|
function App() {
|
|
const { authData } = useAuthStore();
|
|
|
|
return (
|
|
<Router>
|
|
<Routes>
|
|
<Route element={<Layout />}>
|
|
<Route element={<LoginPage />} path={PageRouting["LOGIN"].path} />
|
|
<Route element={<SignUpPage />} path={PageRouting["SIGN_UP"].path} />
|
|
<Route element={<ResetPasswordPage />} path={PageRouting["RESET_PASSWORD"].path} />
|
|
{!authData ? <Route element={<Navigate to={PageRouting["LOGIN"].path} />} path="*" /> : null}
|
|
</Route>
|
|
</Routes>
|
|
</Router>
|
|
);
|
|
}
|
|
|
|
export default App
|