2019-09-02 15:56:59 +00:00
|
|
|
import { storiesOf } from "@storybook/react";
|
|
|
|
import React from "react";
|
|
|
|
|
2019-09-04 13:09:19 +00:00
|
|
|
import CardDecorator from "@saleor/storybook/CardDecorator";
|
2019-09-02 15:56:59 +00:00
|
|
|
import Decorator from "@saleor/storybook/Decorator";
|
|
|
|
import ResetPasswordSuccessPage from "./ResetPasswordSuccessPage";
|
|
|
|
|
|
|
|
storiesOf("Views / Authentication / Reset password success", module)
|
2019-09-04 13:09:19 +00:00
|
|
|
.addDecorator(CardDecorator)
|
2019-09-02 15:56:59 +00:00
|
|
|
.addDecorator(Decorator)
|
2019-09-03 13:42:49 +00:00
|
|
|
.add("default", () => <ResetPasswordSuccessPage onBack={() => undefined} />);
|