Created
April 9, 2025 14:42
-
-
Save stebunovd/20628889e3c25f8b96b9c7ab7f110d69 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState, useEffect } from 'react'; | |
function Example() { | |
const [count, setCount] = useState(0); | |
// Similar to componentDidMount and componentDidUpdate: | |
useEffect(() => { | |
// Update the document title using the browser API | |
document.title = `You clicked ${count} times`; | |
}); | |
return ( | |
<div> | |
<p>You clicked {count} times</p> | |
<button onClick={() => setCount(count + 1)}> | |
Click me | |
</button> | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment