-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
31 lines (29 loc) · 1 KB
/
App.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import './App.css'
import { Inventory } from './pages/Inventory/Inventory'
import { GhostPreviewProvider } from './hooks/GhostPreview.constate'
import { RerollsProvider } from './hooks/Rerolls.constate'
import { IntroContainer } from './pages/Intro/IntroContainer'
import { DuelContainer } from './pages/Duel/DuelContainer'
import { MainMenuContainer } from './pages/MainMenu/MainMenuContainer'
import { TutorialContainer } from './pages/Tutorial/TutorialContainer'
import { ArithmeticContainer } from './pages/Arithmetic/ArithmeticContainer'
import { PlottingContainer } from './pages/Plotting/PlottingContainer'
function App() {
return (
<>
<div className='boardGhost'></div>
<IntroContainer />
<TutorialContainer />
<MainMenuContainer />
<DuelContainer />
<ArithmeticContainer />
<PlottingContainer />
<GhostPreviewProvider>
<RerollsProvider>
<Inventory />
</RerollsProvider>
</GhostPreviewProvider>
</>
)
}
export default App