InterviewSolution
Saved Bookmarks
| 1. |
In what cases would you use a Class Component over a Functional Component? |
|
Answer» If your COMPONENT has a STATE or LIFECYCLE METHOD, use Class component. Else, a FUNCTIONAL component. |
|