Skip to content

Commit

Permalink
Fix broken link (reactjs#3953)
Browse files Browse the repository at this point in the history
  • Loading branch information
erolaliyev authored Oct 13, 2021
1 parent 9b3c3f4 commit 4133943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/docs/thinking-in-react.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}

Expand Down

0 comments on commit 4133943

Please sign in to comment.