mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-10-29 06:57:51 +03:00
Fix error caused by missing semicolon in the class property declaration. Relevant part of the ES proposal: https://github.com/jeffmo/es-class-fields-and-static-properties#145-class-definitions Full error message: > ERROR in ./components/Footer.js Module build failed: SyntaxError: redux-devtools/examples/todomvc/components/Footer.js: A semicolon is required after a class property (18:3) |
||
|---|---|---|
| .. | ||
| actions | ||
| components | ||
| constants | ||
| containers | ||
| reducers | ||
| store | ||
| .babelrc | ||
| index.html | ||
| index.js | ||
| 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/todomvc
npm install
Finally, run the project:
npm start
open http://localhost:3000