/*! 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 { FabricDecoratorTall } from '../utilities';
import { Breadcrumb } from 'office-ui-fabric-react';
const noOp = () => undefined;
storiesOf('Breadcrumb', module)
.addDecorator(FabricDecoratorTall)
.addDecorator(story => (
{story()}
))
.addStory(
'Root',
() => (
),
{ rtl: true },
)
.addStory(
'Button',
() => (
),
{ rtl: true },
);
// Stories for hovering over actionable and non-actionable items
storiesOf('Breadcrumb', module)
.addDecorator(FabricDecoratorTall)
.addDecorator(story => (
{story()}
))
.addStory('Hovering items', () => (
));