10 lines
345 B
TypeScript
10 lines
345 B
TypeScript
![]() |
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} />);
|