|
|
|
|
|
by acsreedharreddy
1695 days ago
|
|
If we have a component
<ProfilePage id={id} onLoad={handleOnLoad} />
and inside profile page we use an effect to load from id and call handleOnLoad with the loaded profile data, then we need to put handleOnLoad in the useEffect dependencies. So we have to pass a callback wrapped in useCallback else the effect would fire every time ProfilePage rerenders. |
|