import * as React from "react"
import { storiesOf } from "@storybook/react"
import { ThemeProvider } from "styled-components"
import { LoginDialog } from "../LoginDialog"
import { action } from "@storybook/addon-actions"
import theme from "../../../theme"
storiesOf("Dialog", module)
.addDecorator((getStory) => {
return {getStory()}
})
.add("LoginDialog", () => {
return (
)
})
.add("LoginDialog--custom-description", () => {
return (
)
})