Once I run the below code, I get the following error:
React Hook useEffect has a missing dependency: \'list\'. Either include it or remove the depende
This warning comes beacuse you have a state 'list' being used inside useEffect. So react warns you that 'list' is not added to dependency so any changes to 'list' state won't trigger this effect to run again. You can find more help here