9 lines
321 B
TypeScript
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} />);
|