InterviewSolution
Saved Bookmarks
| 1. |
What are the difference between a component and an element in React. |
|
Answer» React Component: A class or FUNCTION which optionally accepts inputs and returns a React element via JSX. React Element: It DESCRIBES what the user wants to be DISPLAYED on the SCREEN, Simplifying it, the react element is an object REPRESENTATION for some UI. |
|