From fad9979c5c6eefdff28cfbdc01e7b3ff463bebe3 Mon Sep 17 00:00:00 2001 From: Junwen Qin Date: Tue, 8 Dec 2015 10:48:04 +0800 Subject: [PATCH] update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d6cc5fa..970df3b 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ The thunk function will dispatch following flux standard actions(FSA) for that p | `${actionName}_FAILED` | promise rejected | reason of promise | 'FAILED' | -#### Example +## Example ```js //actions.js const editTodo = createPromiseThunk('EDIT_TODO', function(todo) { @@ -39,3 +39,5 @@ handleEdit(todo){ } ``` +Check `./examples/todo-mvc` for further info. +