Skip to content

Commit

Permalink
hotfix: build 에러 해결 (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yejin0O0 authored Nov 4, 2024
1 parent f9639d9 commit 2d8f9a1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
9 changes: 5 additions & 4 deletions app/club/[clubId]/league/[leagueId]/match/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
// import Match from "@/components/pages/club/Match";

// function MatchPage() {
// return <Match />;
// }
function MatchPage() {
return <div>match</div>;
// return <Match />;
}

// export default MatchPage;
export default MatchPage;
9 changes: 5 additions & 4 deletions app/club/[clubId]/league/create/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
// import LeagueCreate from "@/components/pages/club/LeaueCreate";

// function LeagueCreatePage() {
// return <LeagueCreate />;
// }
function LeagueCreatePage() {
return <div>league create</div>;
// return <LeagueCreate />;
}

// export default LeagueCreatePage;
export default LeagueCreatePage;

0 comments on commit 2d8f9a1

Please sign in to comment.