Skip to content

Commit

Permalink
chore: page,component 파일 세팅 (#17)
Browse files Browse the repository at this point in the history
* feat: 필요한 페이지 생성

* feat: 필요한 컴포넌트 Page의 하위로 추가

* refactor: imageupload 폴더 이동

* refactor: PassWordInput 폴더 추가

* refactor: 수정 사항 반영

* refactor: Page index.ts 파일 수정
  • Loading branch information
khj0426 authored Nov 1, 2023
1 parent f068b1d commit 956e305
Show file tree
Hide file tree
Showing 28 changed files with 60 additions and 1 deletion.
Empty file added src/components/Header/index.tsx
Empty file.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export { default as PageIntro } from './PageIntro'
export { default as Profile } from './Profile'
export { default as UserList } from './UserList'
export { default as PersonalAnswer } from './PersonalAnswer'
export { default as PassWordInput } from './PasswordInput'
export { default as PassWordInput } from './PassWordInput'
export { default as IconButton } from './IconButton'
export { default as SearchBar } from './SearchBar'
export * from './StarRating'
Empty file.
5 changes: 5 additions & 0 deletions src/pages/CreatedReviewManagePage/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
//생성한 리뷰 관리 페이지
const CreatedReviewManagePage = () => {
return <>생성한 리뷰 관리 페이지</>
}
export default CreatedReviewManagePage
Empty file.
6 changes: 6 additions & 0 deletions src/pages/LandingPage/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
//랜딩 페이지
const LandingPage = () => {
return <>랜딩페이지</>
}

export default LandingPage
Empty file.
5 changes: 5 additions & 0 deletions src/pages/LoginPage/index.tsx
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.
6 changes: 6 additions & 0 deletions src/pages/MainPage/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
//메인 페이지
const MainPage = () => {
return <>메인 페이지</>
}

export default MainPage
Empty file.
Empty file.
6 changes: 6 additions & 0 deletions src/pages/MyPage/index.tsx
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.
6 changes: 6 additions & 0 deletions src/pages/ReviewCreatePage/index.tsx
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.
6 changes: 6 additions & 0 deletions src/pages/ReviewReplyPage/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
//답변 페이지
const ReviewReplyPage = () => {
return <>답변 페이지</>
}

export default ReviewReplyPage
5 changes: 5 additions & 0 deletions src/pages/ReviewResultPage/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
//리뷰 결과 페이지
const ReviewResultPage = () => {
return <>리뷰 결과 페이지</>
}
export default ReviewResultPage
5 changes: 5 additions & 0 deletions src/pages/SignUpPage/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
//회원가입 페이지
const SingUpPage = () => {
return <>회원가입 페이지</>
}
export default SingUpPage
9 changes: 9 additions & 0 deletions src/pages/index.ts
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'

0 comments on commit 956e305

Please sign in to comment.