monitor-api - v1.3.0
    Preparing search index...

    Interface RenderEntry

    One captured React component render entry.

    interface RenderEntry {
        commitId: number;
        component: string;
        duration: number;
        timestamp: number;
        type: RenderPhase;
    }
    Index

    Properties

    commitId: number

    Monotonic id shared by all entries captured from the same commit.

    component: string

    Component display name or function/class name.

    duration: number

    Render duration in milliseconds.

    React only exposes meaningful actualDuration values in development or production profiling builds. Other builds may report 0.

    timestamp: number

    Unix timestamp in milliseconds for when the commit was observed.

    Mount/update phase, or unmount when reported by the React DevTools hook.