import * as React from 'react'; import Screener from 'screener-storybook/src/screener'; import { storiesOf } from '@storybook/react'; import { FabricDecoratorTall } from '../utilities'; import { Slider, ThemeProvider } from '@fluentui/react-next'; storiesOf('Slider Next', module) .addDecorator(FabricDecoratorTall) .addDecorator(story => ( {story()} )) .addStory( 'Root', () => (
), { rtl: true }, ) .addStory('Disabled', () => (
)) .addStory('Vertical', () => (
)) .addStory('EqualMinMax', () => (
)) .addStory('Max not multiple of step', () => (
)) .addStory('Step less than 1', () => (
));