mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-10-31 16:07:45 +03:00 
			
		
		
		
	| 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 | ||
|---|---|---|
| .. | ||
| src | ||
| .babelrc | ||
| index.html | ||
| package.json | ||
| README.md | ||
| server.js | ||
| webpack.config.js | ||
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