Answers for "set state class react"

15

state with react functions

class Example extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      count: 0
    };
  }

  render() {
    return (
      <div>
        <p>You clicked {this.state.count} times</p>
        <button onClick={() => this.setState({ count: this.state.count + 1 })}>
          Click me
        </button>
      </div>
    );
  }
}
Posted by: Guest on March-13-2020
0

react function called last state

this.setState({
    someState: obj
}, () => {
    this.afterSetStateFinished();
});
Posted by: Guest on July-04-2020

Browse Popular Code Answers by Language