What is a stateful component?
Component Lifecycle
Audio flashcard · 0:11Nortren·
What is a stateful component?
0:11
A stateful component is one that manages internal state, either through useState and other hooks in a functional component or through this.state in a class component. It re-renders when its state changes.
---