No Preview

Sorry, but you either have no stories or none are selected somehow.

If the problem persists, check the browser console, or the terminal you've run Storybook from.

SearchResultsLoadMore

A simple button that triggers the next page of results. It is used in combination with a SearchResults widget in order to accumulate results on the UI. Results can be gathered using useSearchResultsIncrementalResults hook, which returns the accumulated results (every call to the button performs a request to the next page and the hook stores them).

Example

const { actions: { onPageNumberChange }, ... } = useSearchResults(); <SearchResultsLoadMore onLoadMoreClick={onPageNumberChange}>Load More</SearchResultsLoadMore>