
PATTERN:
class parent componet{
....
onClick=e=>{
this.pullAction();
}
...
render (){
return(
<Child pullAction={ pushAction => this.pullAction=pushAction} />
)
}
class Child componet{
componentDidMount(){
this.props.pullAction(this.method);
}
}