Skip to content

Commit

Permalink
Merge pull request #2 from Ariling/custom
Browse files Browse the repository at this point in the history
로그인 api 테스트 및 9일까지 한 부분 업로드
  • Loading branch information
Ariling authored Mar 10, 2023
2 parents 0efd23c + 7ada85e commit cb42112
Show file tree
Hide file tree
Showing 9 changed files with 511 additions and 18 deletions.
106 changes: 92 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,13 @@
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-router-dom": "^5.3.3",
"axios": "^1.3.4",
"electron-is-dev": "^2.0.0",
"quill-image-resize": "^3.0.9",
"quill-image-resize-module-ts": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.3",
"react-quill": "^2.0.0",
"react-router-dom": "^6.8.0",
"react-scripts": "5.0.1",
Expand Down
Binary file added public/img/hide.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/show.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import CreatePage from "Components/Create";
import LoginPage from "Components/Login";
import Edit from "Edit";
import Home from "home";
import LetterTest from "Pages/LetterTest";
Expand All @@ -9,7 +11,8 @@ function App() {
<RecoilRoot>
<BrowserRouter>
<Routes>
<Route path="/" element={<Home />} />
<Route path="/" element={<LoginPage />} />
<Route path="/create" element={<CreatePage />} />
<Route path="/edit/*" element={<Home />}>
<Route path="Edit" element={<Edit />} />
</Route>
Expand Down
Loading

0 comments on commit cb42112

Please sign in to comment.