We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f95f3f1 commit a758f4bCopy full SHA for a758f4b
site/src/pages/404Page/404Page.stories.tsx
@@ -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