adding documentation to a hook code example
Example 1: react hooks
const [state, setState] = useState(initialState);
Example 2: react hooks
useEffect(() => {
document.title = `You clicked ${count} times`;
}, [count]); // Only re-run the effect if count changes