-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: 필요한 페이지 생성 * feat: 필요한 컴포넌트 Page의 하위로 추가 * refactor: imageupload 폴더 이동 * refactor: PassWordInput 폴더 추가 * refactor: 수정 사항 반영 * refactor: Page index.ts 파일 수정
- Loading branch information
Showing
28 changed files
with
60 additions
and
1 deletion.
There are no files selected for viewing
Empty file.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//생성한 리뷰 관리 페이지 | ||
const CreatedReviewManagePage = () => { | ||
return <>생성한 리뷰 관리 페이지</> | ||
} | ||
export default CreatedReviewManagePage |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
//랜딩 페이지 | ||
const LandingPage = () => { | ||
return <>랜딩페이지</> | ||
} | ||
|
||
export default LandingPage |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//로그인 페이지 | ||
const LoginPage = () => { | ||
return <>로그인 페이지</> | ||
} | ||
export default LoginPage |
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
//메인 페이지 | ||
const MainPage = () => { | ||
return <>메인 페이지</> | ||
} | ||
|
||
export default MainPage |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
//마이 페이지 | ||
const MyPage = () => { | ||
return <>마이페이지</> | ||
} | ||
|
||
export default MyPage |
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
//리뷰 생성 페이지 | ||
const ReviewCreatePage = () => { | ||
return <>리뷰 생성 페이지</> | ||
} | ||
|
||
export default ReviewCreatePage |
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
//답변 페이지 | ||
const ReviewReplyPage = () => { | ||
return <>답변 페이지</> | ||
} | ||
|
||
export default ReviewReplyPage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//리뷰 결과 페이지 | ||
const ReviewResultPage = () => { | ||
return <>리뷰 결과 페이지</> | ||
} | ||
export default ReviewResultPage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//회원가입 페이지 | ||
const SingUpPage = () => { | ||
return <>회원가입 페이지</> | ||
} | ||
export default SingUpPage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
export { default as CreatedReviewManagePage } from './CreatedReviewManagePage' | ||
export { default as LandingPage } from './LandingPage' | ||
export { default as LoginPage } from './LoginPage' | ||
export { default as MainPage } from './MainPage' | ||
export { default as MyPage } from './MyPage' | ||
export { default as ReviewCreatePage } from './ReviewCreatePage' | ||
export { default as ReviewReplyPage } from './ReviewReplyPage' | ||
export { default as ReviewResultPage } from './ReviewResultPage' | ||
export { default as SignUpPage } from './SignUpPage' |