React Basics~useState/ count number~
The useState is a react hook that holds a state of the component.In this case, the state is a counter. The + button increases the state of the counter. The – button decreases the counter. ・src/Example.js import { useState }...