React Hooks can replace local state in React components, so that you can write entire components as functions now, instead of classes.
In this lesson, we'll convert a React class component to a functional component, by switching from using local state to using the useState
hook from React.