Zoom Video SDK for React - v0.0.2
    Preparing search index...

    Interface ReactElement<P, T>

    Represents a JSX element.

    Where ReactNode represents everything that can be rendered, ReactElement only represents JSX.

    const element: ReactElement = <div />;
    
    interface ReactElement<
        P = unknown,
        T extends
            string | JSXElementConstructor<any> =
            | string
            | JSXElementConstructor<any>,
    > {
        key: string
        | null;
        props: P;
        type: T;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    key: string | null
    props: P
    type: T