Stone.js API
    Preparing search index...

    What the renderer produces for one resolved route.

    The native counterpart of the web renderer's browser content. There is no ssr flag and no fullRender: a native application always renders on the device, and the only question is where the result goes in the navigation stack.

    interface NativeResponseContent {
        app?: ReactNode;
        component?: ReactNode;
        head?: HeadContext;
        layout?: string;
        path?: string;
    }
    Index
    app?: ReactNode

    The page wrapped in its layout and view providers.

    component?: ReactNode

    The page alone, for a navigator that supplies its own chrome.

    head?: HeadContext

    The resolved head. On a phone, its title is the screen title.

    layout?: string

    The layout name the page asked for.

    path?: string

    The path this content answers, carried so a navigator can key screens by route.