Skip to content

Commit 4133943

Browse files
authored
Fix broken link (#3953)
1 parent 9b3c3f4 commit 4133943

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/docs/thinking-in-react.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ You can build top-down or bottom-up. That is, you can either start with building
7272

7373
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.
7474

75-
Refer to the [React docs](/docs/) if you need help executing this step.
75+
Refer to the [React docs](/docs/getting-started.html) if you need help executing this step.
7676

7777
### A Brief Interlude: Props vs State {#a-brief-interlude-props-vs-state}
7878

0 commit comments

Comments
 (0)