React Hook to Run Code After Render
daveceddia.com
React Hook to Run Code After Render
1–3 of 3 posts
Re: React Hook to Run Code After Render
#2I'm not very familiar with React. In this context, does "after render" mean after React has finished updating the browser's DOM, or does it mean after the browser has finished displaying the updated DOM to the user?
Re: React Hook to Run Code After Render
#3useEffect as it is runs when the component is mounted and then every time the state is updates, you can control this by passing options to useEffect, to answer your question: yes after the component has been inserted into the DOM, not necessarily after the updated dom has been displayed