Performing a Task at the Mount
Learn how to listen for the mount moment to trigger specific actions, such as fetching data only during the initial component mount.
We'll cover the following...
Mount and un-mount dynamic component
Components
Let's say a count value needs to be fetched from an online service called /giveMeANumber
. When this fetch returns successfully, we would like to reflect the change to the screen:
fetch('/giveMeANumber').then(res => {// Once the data is successfully retrieved, render the 'Title' componentReactDOM.render(<Title />, rootEl);})
The code above represents what we'd like ...