Skip to content

Instantly share code, notes, and snippets.

@imgVOID
Forked from BetterProgramming/useEffect.js
Last active September 21, 2021 19:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imgVOID/1d2a3baa53eaeb0ab3467ed8f476ae68 to your computer and use it in GitHub Desktop.
Save imgVOID/1d2a3baa53eaeb0ab3467ed8f476ae68 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 = `Нажато ${count} раз`;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment