import * as React from 'react' import { storiesOf } from '@storybook/react' import { withTheme } from 'utils' import Button from 'Button' import Title from 'Title' import Subtitle from 'Subtitle' import Dialog from '.' const Header = () => Sign in to <b>Coderbox</b> const Footer = () =>
Don't have an account ? Sign Up
storiesOf('Dialog', module) .add('simple usage', withTheme(() => { return (
} footer={
) }))