saleor-dashboard/src/storybook/stories/components/NotFoundPage.tsx

10 lines
321 B
TypeScript
Raw Normal View History

2019-06-19 14:40:52 +00:00
import { storiesOf } from "@storybook/react";
2019-08-09 10:26:22 +00:00
import React from "react";
2019-06-19 14:40:52 +00:00
import NotFoundPage from "@saleor/components/NotFoundPage";
import Decorator from "../../Decorator";
storiesOf("Views / Not found error page", module)
.addDecorator(Decorator)
.add("default", () => <NotFoundPage onBack={() => undefined} />);