Skip to content

Instantly share code, notes, and snippets.

@ilxanlar
Created June 16, 2021 06:33
Show Gist options
  • Save ilxanlar/754dff1e59339e23d005ed540f8ba8fe to your computer and use it in GitHub Desktop.
Save ilxanlar/754dff1e59339e23d005ed540f8ba8fe to your computer and use it in GitHub Desktop.
import React, { useState, useEffect } from 'react'
function Example() {
const [count, setCount] = useState(0)
useEffect(() => {
document.title = `You clicked ${count} times`
}, [count]) // Pass [count] as dependencies
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