| import { connectHits } from 'react-instantsearch-core'; | |
| import Hits from '../components/Hits'; | |
| /** | |
| * Displays a list of hits. | |
| * | |
| * To configure the number of hits being shown, use the [HitsPerPage widget](widgets/HitsPerPage.html), | |
| * [connectHitsPerPage connector](connectors/connectHitsPerPage.html) or the [Configure widget](widgets/Configure.html). | |
| * | |
| * @name Hits | |
| * @kind widget | |
| * @propType {Component} [hitComponent] - Component used for rendering each hit from | |
| * the results. If it is not provided the rendering defaults to displaying the | |
| * hit in its JSON form. The component will be called with a `hit` prop. | |
| * @themeKey ais-Hits - the root div of the widget | |
| * @themeKey ais-Hits-list - the list of results | |
| * @themeKey ais-Hits-item - the hit list item | |
| * @example | |
| * import React from 'react'; | |
| * import algoliasearch from 'algoliasearch/lite'; | |
| * import { InstantSearch, Hits } from 'react-instantsearch-dom'; | |
| * | |
| * const searchClient = algoliasearch( | |
| * 'latency', | |
| * '6be0576ff61c053d5f9a3225e2a90f76' | |
| * ); | |
| * const App = () => ( | |
| * <InstantSearch | |
| * searchClient={searchClient} | |
| * indexName="instant_search" | |
| * > | |
| * <Hits /> | |
| * </InstantSearch> | |
| * ); | |
| */ | |
| export default connectHits(Hits, { $$widgetType: 'ais.hits' }); | |