Represents a JSX element.
Where ReactNode represents everything that can be rendered, ReactElement only represents JSX.
ReactElement
const element: ReactElement = <div />;
The type of the props object
The type of the component or tag
Generated using TypeDoc
Represents a JSX element.
Where ReactNode represents everything that can be rendered,
ReactElement
only represents JSX.Example