Update react-rendering-basics.md

This commit is contained in:
Angelos Chalaris
2020-09-22 09:16:49 +03:00
committed by GitHub
parent 4aa177e119
commit e5246b450f

View File

@ -42,7 +42,7 @@ After the initial render has completed, there are a few different things that wi
- `this.forceUpdate()` (class components) - `this.forceUpdate()` (class components)
- `useState()` setters (function components) - `useState()` setters (function components)
- `useReducer()` dispatches (function components) - `useReducer()` dispatches (function components)
- `ReactDom.render()` again (on the root component) - `ReactDOM.render()` again (on the root component)
**Rendering behavior** **Rendering behavior**