import { storiesOf } from "@storybook/react"; import { Field, FieldContainerLabelAbove } from "@vivid-planet/comet-admin"; import { FinalFormReactSelectStaticOptions } from "@vivid-planet/comet-admin-react-select"; import * as React from "react"; import { Form } from "react-final-form"; function Story() { const options = [ { value: "chocolate", label: "Chocolate" }, { value: "strawberry", label: "Strawberry", isDisabled: true }, { value: "vanilla", label: "Vanilla" }, { value: "cherry", label: "Cherry" }, ]; return (