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

10 lines
346 B
TypeScript
Raw Normal View History

2019-09-02 15:56:59 +00:00
import { storiesOf } from "@storybook/react";
import React from "react";
import Decorator from "@saleor/storybook//Decorator";
import NewPasswordPage from "./NewPasswordPage";
storiesOf("Views / Authentication / Set up a new password", module)
.addDecorator(Decorator)
.add("default", () => <NewPasswordPage onSubmit={() => undefined} />);