React useState Hook
What is the useState Hook?
useState is a React Hook that allows us to add a state to a functional component, it takes an initial state value as an argument and returns an array containing the current state value and a function to update that state. H...
yousraa.hashnode.dev3 min read