From 4133943e718a77f11627888db2f59f6cb7a73403 Mon Sep 17 00:00:00 2001 From: Erol Aliyev Date: Wed, 13 Oct 2021 14:21:59 +0200 Subject: [PATCH] Fix broken link (#3953) --- content/docs/thinking-in-react.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/thinking-in-react.md b/content/docs/thinking-in-react.md index 1527650d558..33a85b7ee55 100644 --- a/content/docs/thinking-in-react.md +++ b/content/docs/thinking-in-react.md @@ -72,7 +72,7 @@ You can build top-down or bottom-up. That is, you can either start with building At the end of this step, you'll have a library of reusable components that render your data model. The components will only have `render()` methods since this is a static version of your app. The component at the top of the hierarchy (`FilterableProductTable`) will take your data model as a prop. If you make a change to your underlying data model and call `ReactDOM.render()` again, the UI will be updated. You can see how your UI is updated and where to make changes. React's **one-way data flow** (also called *one-way binding*) keeps everything modular and fast. -Refer to the [React docs](/docs/) if you need help executing this step. +Refer to the [React docs](/docs/getting-started.html) if you need help executing this step. ### A Brief Interlude: Props vs State {#a-brief-interlude-props-vs-state}