import React from "react"; import { ComponentStory, ComponentMeta } from "@storybook/react"; import cx from "classnames"; import Select from "../components/Select"; import { Items } from "../components/Select"; const items = [ { title: "One", value: "one", disabled: false, }, { title: "Two", value: "two", disabled: false, }, { title: "Three", value: "three", disabled: true, }, { title: "Four", value: "four", disabled: false, }, ]; export default { title: "Example/Select", component: Select, } as ComponentMeta; const Template: ComponentStory = (args) =>