Skip to content

Commit b346013

Browse files
Add token and send stories
1 parent 569d3b4 commit b346013

File tree

2 files changed

+26
-0
lines changed

2 files changed

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

0 commit comments

Comments
 (0)