Skip to content

Commit

Permalink
story: Card Component
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunjae95 committed Nov 8, 2024
1 parent 879c38b commit be003c9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/components/Card/Card.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import type { Meta, StoryObj } from "@storybook/react";
import Card from "./Card";

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

export default meta;

export const Default: StoryObj<typeof Card> = {
args: { id: "test", name: "test", cohort: 1, grade: "SEED" },
};

0 comments on commit be003c9

Please sign in to comment.