diff --git a/ch-10 issues b/ch-10 issues new file mode 100644 index 0000000..120f4f4 --- /dev/null +++ b/ch-10 issues @@ -0,0 +1,18 @@ +The following code on book is not match on the src with github: + + + +Listing 10.7. Importing the exampleUse file (src/index.js) +import React from 'react'; +import { render } from 'react-dom'; + +import { App } from './containers/App'; +import { Home, SinglePost, Login, NotFound, Profile } from './containers'; +import { Router, Route } from './components/router'; +import { history } from './history'; +import { firebase } from './backend'; +import configureStore from './store/configureStore'; +import initialReduxState from './constants/initialState'; + +import './store/exampleUse'; 1 +//...