import React from "react"; import { SimpleButton } from "./SimpleButton.js"; import Dropdown from "./Dropdown.js"; import ReportDecorator from "./storybook/ReportDecorator.js"; import { ThreeDotsVertical } from "@styled-icons/bootstrap"; export default { component: Dropdown, title: "Components/Dropdown", decorators: [ReportDecorator], }; export const dropdown = () => { return ( }> ➥ Item 1 ➥ Item 2 ); };