/*! 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 { Dialog, DialogType, DialogFooter, PrimaryButton, DefaultButton, } from 'office-ui-fabric-react'; const footer = ( ); const text = { title: 'All emails together', subText: 'Your Inbox has changed. No longer does it include favorites, it is a singular destination for your emails.', }; storiesOf('Dialog', module) .addDecorator(FabricDecoratorTall) .addDecorator(story => // prettier-ignore {story()} , ) .addStory( 'Root', () => ( ), { rtl: true }, ) .addStory('Wide Dialog', () => ( )) .addStory('Large header', () => ( )) .addStory('Blocking', () => ( ));