interface ReactComponentElement<T, P> {
    key: null | Key;
    props: P;
    type: Exclude<T, number>;
}

Type Parameters

Hierarchy (view full)

Properties

Properties

key: null | Key
props: P
type: Exclude<T, number>