What’s the difference between an “Element” and a “Component” in React?

Technology CommunityCategory: ReactWhat’s the difference between an “Element” and a “Component” in React?
VietMX Staff asked 4 years ago

Simply put, a React element describes what you want to see on the screen. Not so simply put, a React element is an object representation of some UI.

A React component is a function or a class which optionally accepts input and returns a React element (typically via JSX which gets transpiled to a createElement invocation).