Understand the concept of useState() in ReactJs
The useState Hook in ReactJs allows you to implement the state variable without using a class-based component. First, to use the useState Hook, you import it from 'react' import { useState } from 'react The useState function takes two arguments; an ...
Mar 7, 20221 min read74


