Skip to content

Commit

Permalink
Feat: RouterProvider 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
shroqkf committed Jan 11, 2025
1 parent 18ea6a9 commit bbaf0fe
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
function App() {
return (
<></>
);
}
import { RouterProvider } from 'react-router';

import router from './routes/Router';

const App = () => {
return <RouterProvider router={router} />;
};

export default App;

0 comments on commit bbaf0fe

Please sign in to comment.