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 3 years ago

Elements are the fundamental building blocks of React, and describe what you want to see on the screen. They are just simple JS objects with props, key, ref, and type properties, whereas Components have a render method and optionally accept inputs.