Created
July 22, 2023 14:38
-
-
Save maskaravivek/ac08a8eff32de71300533ac23fe624e2 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