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 ...
blog.aayooluwa.com1 min read