Skip to content

Commit

Permalink
Feat(#38): Text StoryBook 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
KIMSEI1124 committed Nov 30, 2024
1 parent 1263175 commit 7acebec
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/stories/Common/Text.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import type { Meta, StoryObj } from '@storybook/react';

import Text from '@/components/Common/Text/Text';

const meta: Meta<typeof Text> = {
title: 'Common/Text',
component: Text,
tags: ['autodocs'],
args: {
content: 'Sample Text',
},
};

export default meta;
type Story = StoryObj<typeof meta>;

export const Default: Story = {};

0 comments on commit 7acebec

Please sign in to comment.