Skip to content

Instantly share code, notes, and snippets.

@imgVOID
Forked from BetterProgramming/useState.js
Last active September 21, 2021 18:18
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/e82024bbc4819c27e73ffaacf19f295e to your computer and use it in GitHub Desktop.
Save imgVOID/e82024bbc4819c27e73ffaacf19f295e to your computer and use it in GitHub Desktop.
import React, { useState } from 'react';
function Counter() {
// Определение переменной-счётчика
const [count, setCount] = useState(0);
return (
<div>
<p>Вы нажали {count} раз</p>
<button onClick={() => setCount(count + 1)}>
Нажми меня
</button>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment