From 5e94914bf2f3abfac5fc1078a37542644782dfa7 Mon Sep 17 00:00:00 2001 From: jungmyunggi Date: Tue, 14 Jan 2025 21:18:12 +0900 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20refactor:=20notFound=20pag?= =?UTF-8?q?es=ED=8F=B4=EB=8D=94=EB=A1=9C=20=EC=9D=B4=EB=8F=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/App.tsx | 3 +-- client/src/{components/layout => pages}/NotFound.tsx | 0 2 files changed, 1 insertion(+), 2 deletions(-) rename client/src/{components/layout => pages}/NotFound.tsx (100%) diff --git a/client/src/App.tsx b/client/src/App.tsx index d8154b3..22a9829 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -1,9 +1,8 @@ import { lazy, Suspense, useEffect } from "react"; import { Routes, Route } from "react-router-dom"; -import NotFound from "@/components/layout/NotFound"; - import LoadingPage from "@/pages/Loading.tsx"; +import NotFound from "@/pages/NotFound"; import { denamuAscii } from "@/constants/denamuAscii.ts"; diff --git a/client/src/components/layout/NotFound.tsx b/client/src/pages/NotFound.tsx similarity index 100% rename from client/src/components/layout/NotFound.tsx rename to client/src/pages/NotFound.tsx