Skip to content

Commit b39ca11

Browse files
authored
Merge pull request #3 from Simon-Mignot/feature/equipment-comparison
Feature/equipment comparison
2 parents 4290ff8 + 91ab760 commit b39ca11

File tree

5 files changed

+664
-61
lines changed

5 files changed

+664
-61
lines changed

src/App.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { HashRouter, Routes, Route } from 'react-router-dom';
22
import { GameDataProvider } from './context/GameDataContext';
33
import { ProfileProvider } from './context/ProfileContext';
44
import { TreeModeProvider } from './context/TreeModeContext';
5+
import { ComparisonProvider } from './context/ComparisonContext';
56
import { ToastContainer } from 'react-toastify';
67
import 'react-toastify/dist/ReactToastify.css';
78
import AppShell from './components/Layout/AppShell';
@@ -35,7 +36,8 @@ function App() {
3536
return (
3637
<GameDataProvider>
3738
<ProfileProvider>
38-
<TreeModeProvider>
39+
<ComparisonProvider>
40+
<TreeModeProvider>
3941
<HashRouter>
4042
<Routes>
4143
<Route path="/" element={<AppShell />}>
@@ -71,6 +73,7 @@ function App() {
7173
</Routes>
7274
</HashRouter>
7375
</TreeModeProvider>
76+
</ComparisonProvider>
7477
</ProfileProvider>
7578
<ToastContainer
7679
position="top-center"

0 commit comments

Comments
 (0)