useState Hook in React
useState hook lets you add state to functional components.
Unlike class, useState provide the facility to have the state as a simple variable, not an object.
useState returns an array with two elements, first is the current value of the state, and the second is a state setter function
useState Example with an int value
useState Example with an Array value
useState Example with an Object value