Skip to content

Instantly share code, notes, and snippets.

@Harshmakadia
Created November 3, 2018 06:01
Show Gist options
  • Save Harshmakadia/c90ae3a8ff4c5f11f4999136c58a927c to your computer and use it in GitHub Desktop.
Save Harshmakadia/c90ae3a8ff4c5f11f4999136c58a927c to your computer and use it in GitHub Desktop.
Effect Hook
import { 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