Skip to content

Commit 40e9b60

Browse files
Update App.tsx
1 parent 832c4aa commit 40e9b60

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/app/components/App.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,8 @@ function App(): JSX.Element {
2626
return (
2727
<ThemeProvider theme={theme}>
2828
<Router>
29-
{' '}
3029
{/* we wrap our application with the <Router> tag so that all components that are nested will have the react-router context */}
3130
<StoreContext.Provider value={useReducer(mainReducer, initialState)}>
32-
{' '}
3331
{/* we wrap our MainContainer with the provider so that we will be able to use the store context. We create our store by using useReducer and passing it into the value property */}
3432
<MainContainer />
3533
</StoreContext.Provider>

0 commit comments

Comments
 (0)