diff --git a/exercises/01.managing-ui-state/README.mdx b/exercises/01.managing-ui-state/README.mdx index c6aff95f7..571ac3bfc 100644 --- a/exercises/01.managing-ui-state/README.mdx +++ b/exercises/01.managing-ui-state/README.mdx @@ -10,7 +10,7 @@ how that works with React: ![render --> set up the DOM --> user interacts --> state changes --> re-render --> update the DOM --> return to user interacts](/react-app-lifecycle.png) -You can see from this diagram that there's a cycle of user interaction, state changes, and re-rendering. This +There's a cycle of user interaction, state changes, and re-rendering. This is the core of how React works for interactive applications. The `render` phase is what what we've done so far with creating React elements.