Skip to content

Commit

Permalink
테스트 페이지 (/haeun)
Browse files Browse the repository at this point in the history
  • Loading branch information
송하은 authored and 송하은 committed May 22, 2023
1 parent abfb266 commit a0e1fbc
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions client/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import useRefreshToken from "./hooks/useRefreshToken";
import Modal from "react-modal";
import TestPage from "./test/TestPage";
import Home from "./pages/Home";
import HTestPage from "./pages/HTestPage";

// import { worker } from "./mocks/browser";
// // 개발 모드로 실행되었을 때, mocking 라이브러리가 실행되도록 명시하는 코드
Expand Down Expand Up @@ -61,6 +62,7 @@ function AppContent() {
<Route path="/studypost" element={<StudyPost />} />
<Route path="/calendar" element={<ProfileCalendar />} />
<Route path="/test" element={<TestPage />} />
<Route path="/haeun" element={<HTestPage />} />
<Route />
</Routes>
</>
Expand Down
13 changes: 13 additions & 0 deletions client/src/pages/HTestPage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import StudyComment from "../components/StudyComment";
import StudyCommentList from "../components/StudyCommentList";
const HTestPage = () => {
return (
<div>
<h1>zz</h1>
<StudyComment />
<StudyCommentList />
</div>
);
};

export default HTestPage;

0 comments on commit a0e1fbc

Please sign in to comment.