/*! Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. */
import * as React from 'react';
import Screener from 'screener-storybook/src/screener';
import { storiesOf } from '@storybook/react';
import { FabricDecorator } from '../utilities';
import { Pivot, PivotItem, PivotLinkSize, PivotLinkFormat } from 'office-ui-fabric-react';
storiesOf('Pivot', module)
.addDecorator(FabricDecorator)
.addDecorator(story =>
// prettier-ignore
{story()}
,
)
.addStory('Root', () => (
Content
))
.addStory(
'Count and icon',
() => (
Content
),
{ rtl: true },
)
.addStory('Large', () => (
Content
))
.addStory(
'Tabs',
() => (
Content
),
{ rtl: true },
)
.addStory('Tabs large', () => (
Content
));