Skip to content

Commit

Permalink
add todos-with-undo to Examples.md
Browse files Browse the repository at this point in the history
  • Loading branch information
omnidan committed Sep 24, 2015
1 parent 72b0fe3 commit 1170c2c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ For PDF, ePub, and MOBI exports for offline reading, and instructions on how to

* [Counter](http://rackt.github.io/redux/docs/introduction/Examples.html#counter) ([source](https://github.com/rackt/redux/tree/master/examples/counter))
* [TodoMVC](http://rackt.github.io/redux/docs/introduction/Examples.html#todomvc) ([source](https://github.com/rackt/redux/tree/master/examples/todomvc))
* [Todos with Undo](https://github.com/rackt/redux/tree/master/examples/todos-with-undo) ([source](https://github.com/rackt/redux/tree/master/examples/todos-with-undo))
* [Todos with Undo](http://rackt.github.io/redux/docs/introduction/Examples.html#todos-with-undo) ([source](https://github.com/rackt/redux/tree/master/examples/todos-with-undo))
* [Async](http://rackt.github.io/redux/docs/introduction/Examples.html#async) ([source](https://github.com/rackt/redux/tree/master/examples/async))
* [Real World](http://rackt.github.io/redux/docs/introduction/Examples.html#real-world) ([source](https://github.com/rackt/redux/tree/master/examples/real-world))

Expand Down
19 changes: 19 additions & 0 deletions docs/introduction/Examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,25 @@ It covers:
* Updating nested data
* Testing

## Todos with Undo

Run the [todos-with-undo](https://github.com/rackt/redux/tree/master/examples/todos-with-undo) example:

```
git clone https://github.com/rackt/redux.git
cd redux/examples/todos-with-undo
npm install
npm start
open http://localhost:3000/
```

It covers:

* Redux flow with two reducers
* Undo/Redo functionality in Redux with [redux-undo](https://github.com/omnidan/redux-undo)

## Async

Run the [Async](https://github.com/rackt/redux/tree/master/examples/async) example:
Expand Down

0 comments on commit 1170c2c

Please sign in to comment.