Search
    Preparing search index...
    interface ReactComponentElement<
        T extends keyof JSX.IntrinsicElements
        | JSXElementConstructor<any>,
        P = Pick<
            ComponentProps<T>,
            Exclude<keyof ComponentProps<T>, "key" | "ref">,
        >,
    > {
        key: null
        | Key;
        props: P;
        type: Exclude;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    key: null | Key
    props: P
    type: Exclude