fc-react-slider
Version:
A fully featured slider component made in React
23 lines (18 loc) • 557 B
JavaScript
import { configure, addDecorator } from '@kadira/storybook';
import { setOptions } from '@kadira/storybook-addon-options';
setOptions({
name: 'React-slider',
url: 'https://github.com/filter-components/react-slider',
goFullScreen: false,
showLeftPanel: true,
showDownPanel: true,
showSearchBox: false,
downPanelInRight: true
});
import './base.scss'
import '../components/Slider/Slider.scss'
function loadStories () {
require('../stories/Slider.range.story');
require('../stories/Slider.value.story');
}
configure(loadStories, module);