"use strict"; import { storiesOf } from "@storybook/react"; import SelectStory from "./select.story"; import MultiselectStory from "./multiselect.story"; storiesOf("Dropdown", module) .add("Select", () => SelectStory) .add("Multiselect", () => MultiselectStory);