import React from 'react'; import { storiesOf } from '@storybook/react'; import { object, number } from '@storybook/addon-knobs'; import { Panel } from 'react-instantsearch-dom'; import Range from './3rdPartyIntegrations.stories'; import { WrapWithHits } from './util'; const stories = storiesOf('RangeSlider', module); const Warning = () => (

⚠️ This example only works with the version 2.x of Rheostat ️️⚠️

); stories .add('default', () => ( )) .add('providing default value', () => ( )) .add('custom min/max bounds', () => ( )) .add('with Panel', () => ( )) .add('playground', () => ( ));