import React from "react" import { Dropdown } from "./../src" export default { title: "Dropdown", component: Dropdown, } const options = [ { text: "Option 1", value: "1" }, { text: "Option 2", value: "2" }, { text: "Option 3", value: "3" } ] export const Primary = () => (