diff --git a/src/pages/home/HomePage.tsx b/src/pages/home/HomePage.tsx index cbac3a7a..c37236de 100644 --- a/src/pages/home/HomePage.tsx +++ b/src/pages/home/HomePage.tsx @@ -1,4 +1,5 @@ import { Suspense } from 'react'; +import ErrorBoundary from 'commons/ErrorBoundary'; import GNB from 'layouts/GNB'; import Home from './Home'; @@ -6,9 +7,11 @@ const HomePage = () => { return (
- Loading...
}> - - + + Loading...}> + + + ); };