From 5813c4c85287e5011b6d08a849efbd58328c7cee Mon Sep 17 00:00:00 2001 From: rogermarkussen Date: Tue, 28 Jul 2015 19:42:56 +0200 Subject: [PATCH 1/2] Update README.md Tell how to monitor only a part of the state --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index b5aacdd1da..9b6d5ffc97 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,9 @@ open http://localhost:3000 Try clicking on actions in the log, or changing some code inside `examples/counter/reducers/counter`. For fun, you can also open `http://localhost:3000/?debug_session=123`, click around, and then refresh. +If you only would like to monitor a part of the state, you can set a select-prop on the DevTools component. +ex. state.todos} store={store} monitor={LogMonitor} /> + Oh, and you can do the same with the TodoMVC example as well. ### It's Ugly! From dda35f725813bb073ebfe8ebb144a13c27c0a98c Mon Sep 17 00:00:00 2001 From: rogermarkussen Date: Tue, 28 Jul 2015 19:55:49 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9b6d5ffc97..d15ff5a528 100644 --- a/README.md +++ b/README.md @@ -31,10 +31,11 @@ open http://localhost:3000 Try clicking on actions in the log, or changing some code inside `examples/counter/reducers/counter`. For fun, you can also open `http://localhost:3000/?debug_session=123`, click around, and then refresh. +Oh, and you can do the same with the TodoMVC example as well. + If you only would like to monitor a part of the state, you can set a select-prop on the DevTools component. -ex. state.todos} store={store} monitor={LogMonitor} /> +ex. ` state.todos} store={store} monitor={LogMonitor} />` -Oh, and you can do the same with the TodoMVC example as well. ### It's Ugly!