File size: 294 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 | import React from 'react';
import { connectStats } from 'react-instantsearch-dom';
import { formatNumber } from '../utils';
const ResultsNumberMobile = ({ nbHits }) => (
<div>
<strong>{formatNumber(nbHits)}</strong> results
</div>
);
export default connectStats(ResultsNumberMobile);
|