redux-devtools/examples/counter
rajeshaz09 8cdee0a358 Fixing deprecated issues in AppContainer
The following warnings are fixed.
 1) warning.js:44 Warning: Failed prop type: Passing "props" prop to
<AppContainer /> is deprecated. Replace <AppContainer component={App}
props={{ myProp: myValue }} /> with <AppContainer><App myProp={myValue}
/></AppContainer>.
    in AppContainer

2) Warning: Failed prop type: Passing "component" prop to <AppContainer
/> is deprecated. Replace <AppContainer component={App} /> with
<AppContainer><App /></AppContainer>.
    in AppContainer
2016-07-07 12:10:28 +05:30
..
src Fixing deprecated issues in AppContainer 2016-07-07 12:10:28 +05:30
.babelrc Update Counter example to React Hot Loader 3 2016-04-18 13:28:16 +01:00
index.html Add project skeleton (no DevTools yet) 2015-07-14 22:46:44 +03:00
package.json fix(package): move react-hot-loader to dependencies 2016-05-06 16:50:31 +01:00
README.md Resolve conflicts 2015-12-14 04:18:29 +00:00
server.js Add project skeleton (no DevTools yet) 2015-07-14 22:46:44 +03:00
webpack.config.js Update Counter example to React Hot Loader 3 2016-04-18 13:28:16 +01:00

Redux DevTools Counter example

Running Example

First, clone the project:

git clone https://github.com/gaearon/redux-devtools.git

Then install the dependencies in the root folder:

cd redux-devtools
npm install

Install the dependencies in the example folder:

cd examples/counter
npm install

Finally, run the project:

npm start
open http://localhost:3000