React basic 4 — Class Based Component and Lifecycle Methods

Takuma Kakehi
3 min readMay 20, 2020

In contrast to the functional component from the previous post (React basic 3 — Reusable Functional Components), if your component should manage states properly, class component may be the way to go. Class component comes with a built-in lifecycle that allows you to manipulate your component at different phases. This post explains how to create a class-based component by going over the…

--

--