-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #99 from Onion-City/dev
Feat: 일정 검색 & 게시글, 댓글 & 출석
- Loading branch information
Showing
116 changed files
with
1,692 additions
and
673 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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,11 @@ | ||
import { InfoBoardLike } from "@/features/info/board/like/InfoBoardLike"; | ||
|
||
const InfoBoardLikePage = () => { | ||
return ( | ||
<> | ||
<InfoBoardLike/> | ||
</> | ||
); | ||
}; | ||
|
||
export default InfoBoardLikePage; |
4 changes: 2 additions & 2 deletions
4
src/app/user/club/page.tsx → src/app/user/club/create/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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import SetupUserClub from "@/features/user/club/SetupUserClub"; | ||
|
||
const UserClub = () => { | ||
const UserClubCreate = () => { | ||
// 모임 등록 페이지 | ||
return <SetupUserClub />; | ||
} | ||
|
||
export default UserClub; | ||
export default UserClubCreate; |
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,7 @@ | ||
import InvitationCode from "@/features/user/joinClub/InvitationCode"; | ||
|
||
const JoinClubInfo = () => { | ||
return <InvitationCode />; | ||
}; | ||
|
||
export default JoinClubInfo; |
File renamed without changes.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.