"use strict"; import { storiesOf } from "@storybook/react"; import NavWithContentStory from "./tabs-with-content.story"; import TabsStory from "./tabs.story"; //TODO: add story with DropDown when refactor DropDown HUR component storiesOf("Tabs", module) .add("Tabs basic", () => TabsStory) .add("Tabs with content", () => NavWithContentStory);