LNLakshmi Narasimhan SRinlan7.hashnode.dev·Oct 18, 2020 · 2 min readReact Hooks: useState - Basic ImplementationThis article outlines the basic implementation of useState - one of the many React Hooks. Step - 1 -> import useState from React. import React, { useState } from 'react'; Step - 2 -> Declare the state variable for the component const [name, setName]...00