Skip to content

Instantly share code, notes, and snippets.

@ilxanlar
Created June 16, 2021 04:22
Show Gist options
  • Save ilxanlar/ce537ea4fcec6c3875d7871b6a24ba4f to your computer and use it in GitHub Desktop.
Save ilxanlar/ce537ea4fcec6c3875d7871b6a24ba4f to your computer and use it in GitHub Desktop.
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