Skip to content

Instantly share code, notes, and snippets.

@subeshb1
Created May 7, 2019 09:17
Show Gist options
  • Save subeshb1/da5e9395b3331a07d216b93a5d908dab to your computer and use it in GitHub Desktop.
Save subeshb1/da5e9395b3331a07d216b93a5d908dab to your computer and use it in GitHub Desktop.
function HookTimer() {
const [count, setCount] = useState(0);
useEffect(() => {
const interval = setInterval(() => setCount(count => count + 1), 1000);
return () => clearInterval(interval);
}, []);
return (
<div>
<h1>Count: {count}</h1>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment