-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: 커스텀 뮤테이션 인자 변경 * Merge branch 'dev' of https://github.com/woowacourse-teams/2024-devel-up into dev * remove: 파일 삭제 * refactor: 수정사항 반영 * refactor: privateRotue * refacotr: a링크로 대체 * fix: 링크 삭제 * design: 수정사항 반영 * design: 수정사항 반영
- Loading branch information
Showing
9 changed files
with
47 additions
and
23 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
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
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
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,5 +1,10 @@ | ||
import DashBoardDiscussionList from '@/components/DashBoard/DashboardDiscussion'; | ||
import SpinnerSuspense from '@/components/common/SpinnerSuspense'; | ||
|
||
export default function DashboardDiscussionPage() { | ||
return <DashBoardDiscussionList />; | ||
return ( | ||
<SpinnerSuspense> | ||
<DashBoardDiscussionList /> | ||
</SpinnerSuspense> | ||
); | ||
} |
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,5 +1,10 @@ | ||
import DiscussionCommentList from '@/components/DashBoard/DiscussionComment'; | ||
import SpinnerSuspense from '@/components/common/SpinnerSuspense'; | ||
|
||
export default function DashboardDiscussionCommentPage() { | ||
return <DiscussionCommentList />; | ||
return ( | ||
<SpinnerSuspense> | ||
<DiscussionCommentList /> | ||
</SpinnerSuspense> | ||
); | ||
} |