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

    Interface ReactPortal

    Represents a JSX element.

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

    const element: ReactElement = <div />;
    
    interface ReactPortal {
        children: ReactNode;
        key: string | null;
        props: unknown;
        type: string | JSXElementConstructor<any>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    children: ReactNode
    key: string | null
    props: unknown
    type: string | JSXElementConstructor<any>