Skip to content

Commit 16448bf

Browse files
committed
add a story
1 parent 905d911 commit 16448bf

File tree

1 file changed

+14
-0
lines changed

1 file changed

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

0 commit comments

Comments
 (0)