Tagged: Props and States

React JS: How to change props value from child component

React JS: How to change props value from child component

As we know Props are immutable and we can pass them from Parent to child like below: <ChildComponent myName={this.state.childMyName} />   in above code parent’s state myName now become props for child component ChildComponent. here...