ReactJs - Element

Computer Science and Engineering

What is an element?

  • Element form the basic block of the React app.
  • They have the information that is displayed in UI.

Example:


const element = <h1>Hello, world</h1>;
  

Here