Skip to content

Commit 98618f0

Browse files
Christopher StamperChristopher Stamper
authored andcommitted
Fixed merge conflict
1 parent 7604359 commit 98618f0

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

src/app/components/App.tsx

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -10,32 +10,12 @@ import theme from './theme';
1010
This is used to determine the proper tutorial to render when How To button is pressed.
1111
*/
1212

13-
<<<<<<< HEAD
14-
// const initialState: InitialStateProps = { // we initialize what our initialState is here
15-
// port: null,
16-
// currentTab: null,
17-
// currentTitle: 'No Target',
18-
// tabs: {},
19-
// currentTabInApp: null,
20-
// connectionStatus: true,
21-
// reconnectRequested: false,
22-
// };
23-
24-
=======
25-
>>>>>>> dev
2613
function App(): JSX.Element {
2714
return (
2815
<ThemeProvider theme={theme}>
2916
<Router>
3017
{/* we wrap our application with the <Router> tag so that all components that are nested will have the react-router context */}
31-
<<<<<<< HEAD
32-
{/* <StoreContext.Provider value={useReducer(mainReducer, initialState)}> */}
33-
{/* 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 */}
34-
<MainContainer />
35-
{/* </StoreContext.Provider> */}
36-
=======
3718
<MainContainer />
38-
>>>>>>> dev
3919
</Router>
4020
</ThemeProvider>
4121
);

0 commit comments

Comments
 (0)