# Redux DevTools Dispatch Counter example

## Running Example

First, clone the project:

```
git clone https://github.com/YoruNoHikage/redux-devtools-dispatch.git
```

Then install the dependencies in the root folder:

```
cd redux-devtools-dispatch
npm install
```

Install the dependencies in the example folder:

```
cd examples/counter
npm install
```

Finally, run the project:

```
npm start
open http://localhost:3000
```

_Example code taken from the official Redux repository_
