मेरे पास दो घटक हैं: मूल घटक जिसमें से मैं बच्चे के घटक की स्थिति बदलना चाहता हूं:
class ParentComponent extends Component {
toggleChildMenu() {
?????????
}
render() {
return (
<div>
<button onClick={toggleChildMenu.bind(this)}>
Toggle Menu from Parent
</button>
<ChildComponent />
</div>
);
}
}
और बाल घटक :
class ChildComponent extends Component {
constructor(props) {
super(props);
this.state = {
open: false;
}
}
toggleMenu() {
this.setState({
open: !this.state.open
});
}
render() {
return (
<Drawer open={this.state.open}/>
);
}
}
मुझे पेरेंट कंपोनेंट से चाइल्ड कंपोनेंट के ओपन स्टेट को बदलने की जरूरत है , या पेरेंट कंपोनेंट के बटन पर क्लिक करने पर पेरेंट कंपोनेंट से चाइल्ड कंपोनेंट का टॉगलमेनू () कॉल करना होगा ?