import { Button, ListItem, Typography } from "@material-ui/core"; import { storiesOf } from "@storybook/react"; import { ReactSelect } from "@vivid-planet/comet-admin-react-select"; import * as React from "react"; function Story() { const options = [ { value: "chocolate", label: "Chocolate" }, { value: "strawberry", label: "Strawberry", isDisabled: true }, { value: "vanilla", label: "Vanilla" }, ]; return (
); } storiesOf("material-ui-react-select", module).add("React Select Disabled Option", () => );