React Native Firebase
    Preparing search index...

    Google search entry point.

    interface SearchEntrypoint {
        renderedContent?: string;
    }
    Index

    Properties

    Properties

    renderedContent?: string

    HTML/CSS snippet that must be embedded in a web page. The snippet is designed to avoid undesired interaction with the rest of the page's CSS.

    To ensure proper rendering and prevent CSS conflicts, it is recommended to encapsulate this renderedContent within a shadow DOM when embedding it into a webpage. See MDN: Using shadow DOM.

    const container = document.createElement('div');
    document.body.appendChild(container);
    container.attachShadow({ mode: 'open' }).innerHTML = renderedContent;