Skip to content

Commit

Permalink
๐Ÿ“ Chore(#47): ํŽ˜์ด์ง€ ๋ผ์šฐํŒ… ๋ณ€๊ฒฝ
Browse files Browse the repository at this point in the history
 - BE์™€ ๋น„์ฆˆ๋‹ˆ์Šค ์šฉ์–ด ๋…ผ์˜ ํ›„ ํ•ด๋‹น ๋‚ด์šฉ ๋ฐ˜์˜
  • Loading branch information
sscoderati committed Nov 2, 2023
1 parent d301f51 commit ff8b6ca
Show file tree
Hide file tree
Showing 11 changed files with 68 additions and 23 deletions.
5 changes: 0 additions & 5 deletions src/app/(steady)/steady/config/[id]/page.tsx

This file was deleted.

9 changes: 9 additions & 0 deletions src/app/(steady)/steady/create/questions/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const CreateQuestionsPage = () => {
return (
<div>
<h1>Create Questions</h1>
</div>
);
};

export default CreateQuestionsPage;
5 changes: 5 additions & 0 deletions src/app/(steady)/steady/edit/[id]/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const SteadyEditPage = () => {
return <div>SteadyEditPage</div>;
};

export default SteadyEditPage;
9 changes: 9 additions & 0 deletions src/app/(steady)/steady/edit/questions/[id]/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const EditQuestionsPage = () => {
return (
<div>
<h1>EditQuestionsPage</h1>
</div>
);
};

export default EditQuestionsPage;
9 changes: 9 additions & 0 deletions src/app/(steady)/steady/manage/[id]/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const SteadyManagePage = () => {
return (
<div>
<h1>SteadyManagePage</h1>
</div>
);
};

export default SteadyManagePage;
9 changes: 0 additions & 9 deletions src/app/(user-menu)/mypage/form/page.tsx

This file was deleted.

9 changes: 0 additions & 9 deletions src/app/(user-menu)/mypage/steady/page.tsx

This file was deleted.

9 changes: 9 additions & 0 deletions src/app/(user-menu)/mypage/template/create/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const CreateTemplatePage = () => {
return (
<div>
<h1>CreateTemplatePage</h1>
</div>
);
};

export default CreateTemplatePage;
9 changes: 9 additions & 0 deletions src/app/(user-menu)/mypage/template/edit/[id]/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const EditTemplatePage = () => {
return (
<div>
<h1>EditTemplatePage</h1>
</div>
);
};

export default EditTemplatePage;
9 changes: 9 additions & 0 deletions src/app/(user-menu)/mypage/template/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const MyTemplatePage = () => {
return (
<div>
<h1>My Template Page</h1>
</div>
);
};

export default MyTemplatePage;
9 changes: 9 additions & 0 deletions src/app/(user-menu)/mysteady/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const MySteayPage = () => {
return (
<div>
<h1>My Steady Page</h1>
</div>
);
};

export default MySteayPage;

0 comments on commit ff8b6ca

Please sign in to comment.