import { MenuItem } from "@material-ui/core"; import { storiesOf } from "@storybook/react"; import { Field, FieldContainerLabelAbove, FinalFormSelect } from "@vivid-planet/comet-admin"; import * as React from "react"; import { Form } from "react-final-form"; function Story() { const options = [ { value: "chocolate", label: "Chocolate" }, { value: "strawberry", label: "Strawberry" }, { value: "vanilla", label: "Vanilla" }, ]; return (
{ // }} render={({ handleSubmit }) => ( {(props) => ( {options.map((option) => ( {option.label} ))} )}
)} />
); } storiesOf("comet-admin-form", module).add("Select", () => );