react create state code example
Example 1: 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>
);
}
}
Example 2: how to define state in react function
import React, { useState } from 'react';
function Example() {
const [count, setCount] = useState(0);
return (
<div>
<p>You clicked {count} times</p>
<button onClick={() => setCount(count + 1)}>
Click me
</button>
</div>
);
}
Example 3: state in react
class BalanceInquiry extends Component {
constructor(props) {
super(props);
this.state = {
totalIncome: 0,
};
}
render() {
return <div>totalIncome {this.state.totalIncome}</div>;
}
}
Example 4: set state
setState({ searchTerm: event.target.value })
Example 5: reading state react
<p>You clicked {count} times</p>