import * as React from 'react'; import Screener from 'screener-storybook/src/screener'; import { storiesOf } from '@storybook/react'; import { FabricDecoratorTall } from '../utilities'; import { Slider } from '@uifabric/experiments'; const marks = [ { value: 0, label: '0' }, { value: 40, label: '40' }, { value: 60, label: '60' }, { value: 100, label: '100' }, ]; storiesOf('Experimental Slider', module) .addDecorator(FabricDecoratorTall) .addDecorator(story => ( {story()} )) .addStory('With Tickmarks', () => (
)) .addStory('Vertical With Custom Labels', () => (
));