You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classSwitcherextendsReact.Component{constructor(props){super(props);this.state={name: 'React in patterns'};}render(){return(<buttononClick={this.onButtonClick}>
click me
</button>);}onButtonClick=()=>{console.log(`Button is clicked inside ${this.state.name}`);}}