The useState Hook in React

Finally, Something That Actually Makes Life Simpler

Matthew Tyson
Level Up Coding
Published in
2 min readFeb 3, 2020

--

Modified from Photo by Kelly Sikkema on Unsplash

There’s always some new way to do things around the corner. Sometimes, its actually better.

A sigh of relief washed over me when I groked the useState plus functional component combo.

Yes! This is actually simpler.

import { useState } from ‘react’;

--

--