- a plain js object.
- Most of the time they are created as JSX.
- React elements are immutable. Once you create an element, you can’t change its children or attributes.
- An element is like a single frame in a movie: it represents the UI at a certain point in time.
const element = <h1>Hello, world!</h1>;
// pass an attribute
const element = ;