Skip to content

Commit

Permalink
test: πŸ’ fix useSlider() story
Browse files Browse the repository at this point in the history
  • Loading branch information
streamich committed Jan 3, 2020
1 parent 1e379e4 commit 4633aeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stories/useSlider.story.tsx
@@ -1,6 +1,6 @@
import { storiesOf } from '@storybook/react';
import * as React from 'react';
import { useSlider } from '..';
import { useSlider } from '../src';
import ShowDocs from './util/ShowDocs';

const Demo = () => {
Expand All @@ -21,5 +21,5 @@ const Demo = () => {
};

storiesOf('UI|useSlider', module)
.add('Docs', () => <ShowDocs md={require('../../docs/useSlider.md')} />)
.add('Docs', () => <ShowDocs md={require('../docs/useSlider.md')} />)
.add('Demo', () => <Demo />);

0 comments on commit 4633aeb

Please sign in to comment.