saleor-dashboard/src/storybook/stories/orders/OrderFulfillmentCancelDialog.tsx

17 lines
487 B
TypeScript
Raw Normal View History

2019-06-19 14:40:52 +00:00
import { storiesOf } from "@storybook/react";
import * as React from "react";
import OrderFulfillmentCancelDialog from "../../../orders/components/OrderFulfillmentCancelDialog";
import Decorator from "../../Decorator";
storiesOf("Orders / OrderFulfillmentCancelDialog", module)
.addDecorator(Decorator)
.add("default", () => (
<OrderFulfillmentCancelDialog
confirmButtonState="default"
open={true}
onConfirm={undefined}
onClose={undefined}
/>
));