Elementtype

{
	readonly type: string | ((props: P) => Elements | null);
	readonly props: P;
	readonly key: string | null;
	readonly $$typeof?: symbol;
}
PropertyType
.typestring
((props: P) => Elements
null)
required readonly
.propsP
required readonly
.keystring
null
required readonly
.$$typeofsymbol
readonly
Type
Elements
Collection of elements (compatible with React.ReactNode).

Element with a type, props, and optional key (compatible with React.ReactElement).