From 1a5d504fb22694af800b726c1358feae7316554c Mon Sep 17 00:00:00 2001 From: Satoshi Nakajima Date: Thu, 10 Nov 2016 06:13:56 -0800 Subject: [PATCH] Replaced old refs with new callback refs (#8254) --- docs/thinking-in-react.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/thinking-in-react.md b/docs/thinking-in-react.md index b7e7ba46..e6ae59cb 100644 --- a/docs/thinking-in-react.md +++ b/docs/thinking-in-react.md @@ -132,8 +132,8 @@ You can start seeing how your application will behave: set `filterText` to `"bal ## Step 5: Add Inverse Data Flow -

See the Pen Thinking In React: Step 5 on CodePen.

- +

See the Pen Thinking In React: Step 5 on CodePen.

+ So far, we've built an app that renders correctly as a function of props and state flowing down the hierarchy. Now it's time to support data flowing the other way: the form components deep in the hierarchy need to update the state in `FilterableProductTable`.