saleor-dashboard/src/storybook/stories/components/NotFoundPage.tsx
2019-08-09 12:26:22 +02:00

9 lines
321 B
TypeScript

import { storiesOf } from "@storybook/react";
import React from "react";
import NotFoundPage from "@saleor/components/NotFoundPage";
import Decorator from "../../Decorator";
storiesOf("Views / Not found error page", module)
.addDecorator(Decorator)
.add("default", () => <NotFoundPage onBack={() => undefined} />);