Skip to content

Commit

Permalink
Route Groups 사용
Browse files Browse the repository at this point in the history
  • Loading branch information
신원세/프론트엔드개발팀 committed Jun 4, 2024
1 parent c2754b7 commit a8d5d44
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 0 deletions.
File renamed without changes.
9 changes: 9 additions & 0 deletions src/app/(post)/books/[book]/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const Books = () => {
return (
<div>
<h1>Books</h1>
</div>
);
};

export default Books;
File renamed without changes.
9 changes: 9 additions & 0 deletions src/app/(post)/posts/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const Posts = () => {
return (
<div>
<h1>Posts</h1>
</div>
);
};

export default Posts;

0 comments on commit a8d5d44

Please sign in to comment.