SearchResultProps
Home > @backstage/plugin-search-react
> SearchResultProps
Props for SearchResult()
Signature:
export type SearchResultProps = Pick<SearchResultStateProps, 'query'> & Omit<SearchResultListItemExtensionsProps, 'results' | 'children'> & {
children?: ReactNode | ((resultSet: SearchResultSet) => JSX.Element);
noResultsComponent?: JSX.Element;
};
References: SearchResultStateProps, SearchResultListItemExtensionsProps, SearchResultSet