saleor-dashboard/src/auth/components/ResetPasswordPage/ResetPasswordPage.stories.tsx

10 lines
345 B
TypeScript
Raw Normal View History

2019-09-02 13:52:43 +00:00
import { storiesOf } from "@storybook/react";
import React from "react";
import Decorator from "@saleor/storybook//Decorator";
import ResetPasswordPage from "./ResetPasswordPage";
storiesOf("Views / Authentication / Reset password", module)
.addDecorator(Decorator)
.add("default", () => <ResetPasswordPage onSubmit={() => undefined} />);