From bbaf0fea0544908e67ed9930898170c5b152cd25 Mon Sep 17 00:00:00 2001 From: syddl0 <137189866+shroqkf@users.noreply.github.com> Date: Sat, 11 Jan 2025 12:28:29 +0900 Subject: [PATCH] =?UTF-8?q?Feat:=20RouterProvider=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 85d6acd3..fc78a1b2 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,7 +1,9 @@ -function App() { - return ( - <> - ); -} +import { RouterProvider } from 'react-router'; + +import router from './routes/Router'; + +const App = () => { + return ; +}; export default App;