We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02c22b3 commit 051498eCopy full SHA for 051498e
React InstantSearch/multi-index-hits/src/App.js
@@ -2,6 +2,7 @@ import React, { Component } from 'react';
2
import {
3
InstantSearch,
4
Index,
5
+ Configure,
6
Hits,
7
SearchBox,
8
Highlight,
@@ -25,13 +26,15 @@ class App extends Component {
25
26
<h2>
27
index: <code>instant_search</code>
28
</h2>
29
+ <Configure hitsPerPage={8} />
30
<Hits hitComponent={Hit} />
31
</Index>
32
33
<Index indexName="bestbuy">
34
35
index: <code>bestbuy</code>
36
37
+ <Configure hitsPerPage={16} />
38
39
40
</InstantSearch>
0 commit comments