"use strict"; import { storiesOf } from "@storybook/react"; import AlertVariants from "./alert-variants"; import AlertExtendedUsage from "./alert-extended-usage"; storiesOf("Alert", module) .add("Variants", () => AlertVariants) .add("Extended usage", () => AlertExtendedUsage);