Skip to content

Commit c10b3ca

Browse files
committed
docs: add stories for NotFoundPage component
1 parent 624fac6 commit c10b3ca

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)