import React from 'react' import PropTypes from 'prop-types' import { RefinementList, SearchBox, Hits, Configure, Highlight, Pagination } from 'react-instantsearch/dom' import { InstantSearch } from './instantsearch' const HitComponent = ({ hit }) =>
{' '}- ${hit.price} {' '}- {hit.rating} stars
HitComponent.propTypes = { hit: PropTypes.object } export default class extends React.Component { static propTypes = { searchState: PropTypes.object, resultsState: PropTypes.oneOfType([PropTypes.object, PropTypes.array]), onSearchStateChange: PropTypes.func }; render () { return (

React InstantSearch + Next.Js

) } }