react state component give value on mount code example
Example 1: component did mmount
componentDidMount()
Example 2: react lifecycle
constructor(props) {
super(props);
// Don't call this.setState() here!
this.state = { counter: 0 };
this.handleClick = this.handleClick.bind(this);
}