From a108bac4b5a71eeb238e64e4b72f3554bb906ec4 Mon Sep 17 00:00:00 2001 From: GC-Park Date: Wed, 17 Jan 2024 18:17:04 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20Profile=EC=97=90=20Query=20suspense?= =?UTF-8?q?=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/router.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/router.tsx b/frontend/src/router.tsx index dd9b8268a..b2f5f13b6 100644 --- a/frontend/src/router.tsx +++ b/frontend/src/router.tsx @@ -6,6 +6,7 @@ import Home from './pages/Home'; import NotFound from './pages/NotFound'; import RootPage from './pages/RootPage'; import Search from './pages/Search'; +import TopicListSkeleton from './components/Skeletons/TopicListSkeleton'; const SelectedTopic = lazy(() => import('./pages/SelectedTopic')); const NewPin = lazy(() => import('./pages/NewPin')); @@ -115,9 +116,9 @@ const routes: routeElement[] = [ { path: 'my-page', element: ( - + }> - + ), withAuth: true, },