I have a working demo of this InstantSearch, but I can't find the way of displaying the results as a grid and not a list.
<InstantSearch
appId="xxxxx"
apiKey="xxxxxx"
indexName="xxxx"
>
<SearchBox />
<div>
<Hits hitComponent={Product} />
</div>
</InstantSearch>
And Product is a card with the result information. The only way I seem to be able to access the list of results is with Hits, but that won't allow me to create a grid.
Any help is welcome.