-
Notifications
You must be signed in to change notification settings - Fork 0
/
Step2.js
35 lines (27 loc) · 892 Bytes
/
Step2.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
import React from 'react';
import ReactDOM from 'react-dom';
import { ChildClass } from './ChildClass';
// El componente padre vincula el método recién definido a la instancia actual del componente en su constructor.
// Esto garantiza que cuando pasemos el método al componente hijo, este seguirá actualizando el componente padre.
class ParentClass extends React.Component {
constructor(props) {
super(props);
this.state = { totalClicks: 0 };
this.handleClick = this.handleClick.bind(this);
}
handleClick() {
const total = this.state.totalClicks;
// calling handleClick will
// result in a state change:
this.setState(
{ totalClicks: total + 1 }
);
}
// The stateful component class passes down
// handleClick to a stateless component class:
render() {
return (
<ChildClass onClick={this.handleClick} />
);
}
}