Skip to content

Commit

Permalink
feat: goalroomDashboard 에러바운더리 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
NaveOWO committed Dec 28, 2023
1 parent 512efee commit 46b42f3
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
import GoalRoomDashboardContent from '@components/goalRoomDahsboardPage/goalRoomDashboardContent/GoalRoomDashboardContent';
import GoalRoomDashboardProvider from '@components/_providers/GoalRoomDashboardProvider';
import { Suspense } from 'react';
import Spinner from '@components/_common/spinner/Spinner';
import AsyncBoundary from '@/components/_common/errorBoundary/AsyncBoundary';

const GoalRoomDashboardPage = () => {
return (
<Suspense fallback={<Spinner />}>
<AsyncBoundary>
<GoalRoomDashboardProvider>
<GoalRoomDashboardContent />
</GoalRoomDashboardProvider>
</Suspense>
</AsyncBoundary>
);
};

Expand Down

0 comments on commit 46b42f3

Please sign in to comment.