Skip to content

Commit

Permalink
add card component stroybook
Browse files Browse the repository at this point in the history
  • Loading branch information
yjshin229 committed Dec 19, 2024
1 parent 0ca6653 commit b181bd8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/components/design_system/card/Card.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import type { Meta, StoryObj } from "@storybook/react";

import Card from "./Card";

const meta = {
component: Card,
} satisfies Meta<typeof Card>;

export default meta;

type Story = StoryObj<typeof meta>;

export const Default: Story = {};

0 comments on commit b181bd8

Please sign in to comment.