Components that manage and maintain their own state are referred to as ________ components.
- controlled
- functional
- stateless
- uncontrolled
Components that manage and maintain their own state are referred to as stateful components. These components hold their own state data and are responsible for rendering and updating it. Stateless components, on the other hand, do not manage their own state and rely on props passed to them.
Loading...
Related Quiz
- While rendering a list of items, you observed that adding a new item to the top causes a re-render of the entire list. What might be the likely cause of this issue?
- Which of the following describes React Native?
- What is reconciliation?
- Why are immutable data structures beneficial for React applications?
- In a project, you're required to fetch data from multiple REST endpoints simultaneously and display it only when all the data is available. Which Axios method would be most suitable for this?