import * as React from 'react'; import Screener from 'screener-storybook/src/screener'; import { storiesOf } from '@storybook/react'; import { FabricDecorator } from '../utilities'; import { Panel, PanelType, Dialog, DialogType } from 'office-ui-fabric-react'; storiesOf('FocusTrapZones', module) .addDecorator(FabricDecorator) .addDecorator(story => ( {story()} )) .addStory( 'Dialog nested in Panel', () => (
), { rtl: true }, ) .addStory('Panel on its own', () => (
{null}
));