aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/layout/header/header.stories.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/layout/header/header.stories.ts')
-rw-r--r--src/components/atoms/layout/header/header.stories.ts17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/components/atoms/layout/header/header.stories.ts b/src/components/atoms/layout/header/header.stories.ts
new file mode 100644
index 0000000..2afe715
--- /dev/null
+++ b/src/components/atoms/layout/header/header.stories.ts
@@ -0,0 +1,17 @@
+import type { Meta, StoryObj } from '@storybook/react';
+import { Header } from './header';
+
+const meta = {
+ component: Header,
+ title: 'Atoms/Layout/Header',
+} satisfies Meta<typeof Header>;
+
+export default meta;
+
+type Story = StoryObj<typeof meta>;
+
+export const Example: Story = {
+ args: {
+ children: 'The header contents.',
+ },
+};