Part 12: Working with state

Understand State Now components has a built-in state object The state object is where you store property values that belongs to the page or component When the state object changes, the component re-renders. To change the state of the property, use setState method. Never use this.state metthod. Read more about State HERE Navigate to Catalog […]