From 04266908b79115e6723ac09c836230ab3359e7cc Mon Sep 17 00:00:00 2001 From: changyh Date: Wed, 1 Aug 2018 15:00:42 -0700 Subject: [PATCH] Create ch-10 issues --- ch-10 issues | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ch-10 issues 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 +//...