Backstage
    Preparing search index...
    interface SearchModalChildrenProps {
        resultItemComponents?:
            | ReactNode
            | ((resultSet: SearchResultSet) => Element);
        toggleModal: () => void;
    }
    Index

    Properties

    resultItemComponents?: ReactNode | ((resultSet: SearchResultSet) => Element)

    Ability to provide custom components to render the result items

    toggleModal: () => void

    A function that should be invoked when navigating away from the modal.