saleor-dashboard/src/storybook/stories/components/NotFoundPage.tsx
Krzysztof Wolski a82de30309
Add circleci config and enhance our linters (#519)
* Add circleci config

* Season linting config

* Apply code style
2020-05-14 11:30:32 +02:00

9 lines
321 B
TypeScript

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