import React, { Fragment, Component } from 'react'; import { storiesOf } from '@storybook/react'; import { Dialogger, Button, ButtonGroup } from '..'; storiesOf('Dialogger', module) .add('Dialogger Test', () => ( {/* The Dialogger should be rendered at the root of the app, and never rendered conditionally. */} {/* If the Dialogger is not rendered and you call any of the static methods on the Dialogger, an error will be raised! */}

Click any of the below buttons to open a dialog.

))