"use strict"; import { storiesOf } from "@storybook/react"; import PopoverBaseStory from "./popover-base.story"; import PopoverFunctionalComponentStory from "./popover-fc.story"; import PopoverActionsStory from "./popover-actions.story"; import PopoverFlexibleContent from "./popover-base.flexible-content"; storiesOf("Popover", module) .add("Basic Popover", () => PopoverBaseStory) .add("Functional Component Popover", () => PopoverFunctionalComponentStory) .add("Popover actions", PopoverActionsStory) .add("Popover with flexible content", () => PopoverFlexibleContent);