Skip to content

Commit cd64e98

Browse files
chore(site): add stories to 404 page (#12470)
Related to #12263
1 parent b1ecc53 commit cd64e98

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import type { Meta, StoryObj } from "@storybook/react";
2+
import NotFoundPage from "./404Page";
3+
4+
const meta: Meta<typeof NotFoundPage> = {
5+
title: "components/NotFoundPage",
6+
component: NotFoundPage,
7+
};
8+
9+
export default meta;
10+
type Story = StoryObj<typeof NotFoundPage>;
11+
12+
const Example: Story = {};
13+
export { Example as NotFoundPage };

0 commit comments

Comments
 (0)