import React from 'react'; import { storiesOf } from '@storybook/react'; import { Configure } from 'react-instantsearch-dom'; import { WrapWithHits } from './util'; const stories = storiesOf('Configure', module); stories.add('default', () => ); class ConfigureExample extends React.Component { constructor() { super(); this.state = { hitsPerPage: 3 }; } onClick = () => { const hitsPerPage = this.state.hitsPerPage === 3 ? 1 : 3; this.setState({ hitsPerPage }); }; render() { return ( ); } }