12 lines
383 B
TypeScript
12 lines
383 B
TypeScript
![]() |
import { storiesOf } from "@storybook/react";
|
||
|
import React from "react";
|
||
|
|
||
|
import Decorator from "@saleor/storybook/Decorator";
|
||
|
import ResetPasswordSuccessPage from "./ResetPasswordSuccessPage";
|
||
|
|
||
|
storiesOf("Views / Authentication / Reset password success", module)
|
||
|
.addDecorator(Decorator)
|
||
|
.add("default", () => (
|
||
|
<ResetPasswordSuccessPage onSubmit={() => undefined} />
|
||
|
));
|