diff --git a/src/container/index.js b/src/container/index.js index d5dd79a..f43019e 100644 --- a/src/container/index.js +++ b/src/container/index.js @@ -1,17 +1,23 @@ import { PropTypes } from 'prop-types'; import React from 'react'; import { Provider } from 'react-redux'; +import { Switch, Route } from 'react-router-dom'; +import { ConnectedRouter } from 'connected-react-router'; import { Header, Footer, HelloWorld } from '../components'; import styles from '../styles/index.scss'; const AppContainer = ({ store, history }) => { return ( -
-
- -
-
+ +
+
+ + + +
+
); };