-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sample2.js
48 lines (43 loc) · 1.12 KB
/
Sample2.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
class Button extends React.Component {
handleClick = () =>{
/*this.setState((prevState) => ({
counter: prevState.counter + 1
}));*/
this.props.onClickFunction(this.props.incrementValue);
};
render() {
return(
//Call APP's onClickFunction
<button
onClick={this.handleClick}>
+{this.props.incrementValue}
</button>
);
}
}
const Result = (props) => {
return(
<div>{props.counter}</div>
)
}
class App extends React.Component {
state = { counter: 0 }
incrementCounter =(incrementValue) =>{
this.setState((prevState) => ({
counter: prevState.counter + incrementValue
}));
}
render() {
return (
//Call the incrementcounter()
<div>
<Button incrementValue={1}onClickFunction={this.incrementCounter}/>
<Button incrementValue={5}onClickFunction={this.incrementCounter}/>
<Button incrementValue={10}onClickFunction={this.incrementCounter}/>
<Button incrementValue={100}onClickFunction={this.incrementCounter}/>
<Result counter={this.state.counter}/>
</div>
);
}
}
ReactDOM.render(<App />,mountNode);