redux-devtools/examples/todomvc
rajeshaz09 5047cf2d6d TodoMVC: 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 18:47:50 +05:30
..
actions Add project skeleton (no DevTools yet) 2015-07-14 22:46:44 +03:00
components Missing semicolon throwing TodoMVC error 2016-01-08 11:57:46 -06:00
constants Add project skeleton (no DevTools yet) 2015-07-14 22:46:44 +03:00
containers Update to final 3.0 APIs 2015-12-14 01:58:27 +00:00
reducers Fix examples 2015-10-17 04:11:16 +03:00
store fix regexp to extract session name 2016-02-20 23:12:32 +01:00
.babelrc Update TodoMVC example to React Hot Loader 3 2016-04-18 13:28:26 +01:00
index.html Add project skeleton (no DevTools yet) 2015-07-14 22:46:44 +03:00
index.js TodoMVC: Fixing deprecated issues in AppContainer 2016-07-07 18:47:50 +05:30
package.json fix(package): move react-hot-loader to dependencies 2016-05-06 16:50:31 +01:00
README.md fix minor typo 2016-03-02 22:04:22 +01:00
server.js Add project skeleton (no DevTools yet) 2015-07-14 22:46:44 +03:00
webpack.config.js Update TodoMVC example to React Hot Loader 3 2016-04-18 13:28:26 +01:00

Redux DevTools todomvc 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/todomvc
npm install

Finally, run the project:

npm start
open http://localhost:3000