We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 583a167 commit fc383d3Copy full SHA for fc383d3
README.md
src/App.js
@@ -1,16 +1,29 @@
1
+import React from 'react';
2
import './index.scss';
3
4
function App() {
5
+
6
+ const [count, setCount] = React.useState(0);
7
8
+ const onClickPlus = () => {
9
+ setCount(count + 1);
10
+ }
11
12
+ const onClickMinus = () => {
13
+ setCount(count - 1);
14
15
16
return (
17
<div className="App">
18
<div>
19
<h2>Счетчик:</h2>
- <h1>0</h1>
- <button className="minus">- Минус</button>
- <button className="plus">Плюс +</button>
20
+ <h1>{count}</h1>
21
+ <button onClick={onClickMinus} className="minus">- Минус</button>
22
+ <button onClick={onClickPlus} className="plus">Плюс +</button>
23
</div>
24
25
);
26
}
27
28
export default App;
29
0 commit comments