Fix Reconciliation link

This commit is contained in:
Dan Abramov
2017-10-30 11:24:33 +00:00
committed by GitHub
parent ff8ef817e3
commit f5ab0b4ba7

View File

@@ -161,6 +161,6 @@ Handling events with React elements has some syntactic differences:
* React event handlers are named using camelCase, rather than lowercase.
* With JSX you pass a function as the event handler, rather than a string.
## [Reconciliation](/reconciliation.html)
## [Reconciliation](/docs/reconciliation.html)
When a component's props or state change, React decides whether an actual DOM update is necessary by comparing the newly returned element with the previously rendered one. When they are not equal, React will update the DOM. This process is called "reconciliation".