From cd5e4350a12218cb8854399c24dd401fc8d17894 Mon Sep 17 00:00:00 2001 From: Olivier Tassinari Date: Sun, 23 Aug 2015 19:11:54 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 349a73955..74f5dd94b 100644 --- a/README.md +++ b/README.md @@ -252,7 +252,7 @@ A React component class that injects state and action creators into your compone export default connect()(TodoApp); ``` -##### Inject `dispatch` and every field in the global state (SLOW!) +##### Inject `dispatch` and every field in the global state (SLOW! TodoApp will rerender after each action) ```js export default connect(state => state)(TodoApp); ```