interface ComponentElement<P, T> {
    key: null | Key;
    props: P;
    ref?: LegacyRef<T>;
    type: ComponentClass<P, any>;
}

Type Parameters

Hierarchy (view full)

Properties

Properties

key: null | Key
props: P
ref?: LegacyRef<T>
type: ComponentClass<P, any>