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 624fac6 commit c10b3caCopy full SHA for c10b3ca
packages/component-library/src/NotFoundPage/index.stories.tsx
@@ -0,0 +1,16 @@
1
+import type { Meta, StoryObj } from "@storybook/react";
2
+
3
+import { NotFoundPage as NotFoundPageComponent } from "./index.jsx";
4
5
+const meta = {
6
+ component: NotFoundPageComponent,
7
+ parameters: {
8
+ layout: "fullscreen",
9
+ },
10
+ tags: ["autodocs"],
11
+} satisfies Meta<typeof NotFoundPageComponent>;
12
+export default meta;
13
14
+type Story = StoryObj<typeof NotFoundPageComponent>;
15
16
+export const Default: Story = {};
0 commit comments