Skip to content

Commit

Permalink
Feat : main page app에 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
sheepdog13 committed Feb 6, 2024
1 parent e0f2fe3 commit 9d90d50
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import Home from './pages/Home';
import { Route, Routes } from 'react-router-dom';
import Register from './pages/Register';
import Login from './pages/Login';
import Main from './pages/Main';

function App() {
return (
Expand All @@ -12,6 +13,7 @@ function App() {
<Route index={true} path="/" element={<Home />} />
<Route path="/register" element={<Register />} />
<Route path="/login" element={<Login />} />
<Route path="/main" element={<Main />} />
</Routes>
</div>
);
Expand Down

0 comments on commit 9d90d50

Please sign in to comment.