-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
๐ Chore(#47): ๊ธฐ๋ณธ ํ์ด์ง ํ์ผ๋ค Route Grouping ์ ์ฉ
- Loading branch information
1 parent
fc9d71c
commit 4154e68
Showing
13 changed files
with
101 additions
and
0 deletions.
There are no files selected for viewing
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 @@ | ||
const CreateFormPage = () => { | ||
return ( | ||
<div> | ||
<h1>CreateFormPage</h1> | ||
</div> | ||
); | ||
}; | ||
|
||
export default CreateFormPage; |
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 @@ | ||
const EditFormPage = () => { | ||
return ( | ||
<div> | ||
<h1>Edit Form Page</h1> | ||
</div> | ||
); | ||
}; | ||
|
||
export default EditFormPage; |
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 @@ | ||
const ApplicantPage = () => { | ||
return ( | ||
<div> | ||
<h1>Applicant Page</h1> | ||
</div> | ||
); | ||
}; | ||
|
||
export default ApplicantPage; |
9 changes: 9 additions & 0 deletions
9
src/app/(steady)/(application)/application/edit/[id]/page.tsx
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 @@ | ||
const EditApplicationPage = () => { | ||
return ( | ||
<div> | ||
<h1>Edit Application</h1> | ||
</div> | ||
); | ||
}; | ||
|
||
export default EditApplicationPage; |
5 changes: 5 additions & 0 deletions
5
src/app/(steady)/(application)/application/submit/[id]/page.tsx
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 ApplicationSubmitPage = () => { | ||
return <div>Application Submit Page</div>; | ||
}; | ||
|
||
export default ApplicationSubmitPage; |
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 ConfigSteadyPage = () => { | ||
return <div>ConfigSteadyPage</div>; | ||
}; | ||
|
||
export default ConfigSteadyPage; |
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 @@ | ||
const CreateSteadyPage = () => { | ||
return ( | ||
<div> | ||
<h1>Create Steady</h1> | ||
</div> | ||
); | ||
}; | ||
|
||
export default CreateSteadyPage; |
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 @@ | ||
const SteadyDetailPage = () => { | ||
return ( | ||
<div> | ||
<h1>SteadyDetailPage</h1> | ||
</div> | ||
); | ||
}; | ||
|
||
export default SteadyDetailPage; |
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 ReviewPage = () => { | ||
return <div>Review Page</div>; | ||
}; | ||
|
||
export default ReviewPage; |
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 @@ | ||
const MyFormPage = () => { | ||
return ( | ||
<div> | ||
<h1>My Form Page</h1> | ||
</div> | ||
); | ||
}; | ||
|
||
export default MyFormPage; |
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 MyProfilePage = () => { | ||
return <div>MyPage</div>; | ||
}; | ||
|
||
export default MyProfilePage; |
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 @@ | ||
const MyReviewsPage = () => { | ||
return ( | ||
<div> | ||
<h1>My Reviews</h1> | ||
</div> | ||
); | ||
}; | ||
|
||
export default MyReviewsPage; |
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 @@ | ||
const MySteadyPage = () => { | ||
return ( | ||
<div> | ||
<h1>MySteadyPage</h1> | ||
</div> | ||
); | ||
}; | ||
|
||
export default MySteadyPage; |