chore: clean storybook

This commit is contained in:
kawamataryo 2024-11-24 14:44:56 +09:00
parent 04841ea7bf
commit 530db6fb2b
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,20 @@
import type { Meta, StoryObj } from "@storybook/react";
import AsyncButton from "./AsyncButton";
const meta = {
title: "Components/AsyncButton",
component: AsyncButton,
} as Meta<typeof AsyncButton>;
export default meta;
type Story = StoryObj<typeof AsyncButton>;
export const Default: Story = {
args: {
label: "Click Me",
onClick: async () => {
return new Promise((resolve) => setTimeout(resolve, 2000));
},
},
};

View File

@ -0,0 +1,13 @@
import type { Meta, StoryObj } from "@storybook/react";
import SocialLinks from "./SocialLinks";
const meta = {
title: "Components/SocialLinks",
component: SocialLinks,
} as Meta<typeof SocialLinks>;
export default meta;
type Story = StoryObj<typeof meta>;
export const Default: Story = {};