What react hook is used for checking props code example
Example 1: react hooks
useEffect(() => {
document.title = `You clicked ${count} times`;
});
Example 2: react hooks
useEffect(() => {
document.title = `You clicked ${count} times`;
}, [count]); // Only re-run the effect if count changes