"use strict"; import React from "react"; import { storiesOf } from "@storybook/react"; import DialogBasicStory from "./dialog-basic.story"; import DialogTabsStory from "./dialog-tabs.story"; import DialogExpandableStory from "./dialog-expandable.story"; import DialogFullStory from "./dialog-full.story"; import DialogAttentionStory from "./dialog-attention.story"; storiesOf("Dialog", module) .add("Dialog Basic", () => DialogBasicStory) .add("Dialog Tabs", () => DialogTabsStory) .add("Dialog Expandable", () => DialogExpandableStory) .add("Dialog Full", () => DialogFullStory) .add("Dialog Attention", () => DialogAttentionStory);