Skip to content

Commit

Permalink
feat : 알림 뱃지 컴포넌트 스토리
Browse files Browse the repository at this point in the history
  • Loading branch information
cmlim0070 committed Nov 21, 2024
1 parent a41ecba commit 7ffb63a
Showing 1 changed file with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import type { Meta, StoryObj } from '@storybook/react';

import { NotificationBadge } from './NotificationBadge';

const meta: Meta<typeof NotificationBadge> = {
component: NotificationBadge,
title: 'atoms/NotificationBadge',
tags: ['autodocs'],
argTypes: {}
};
export default meta;

type Story = StoryObj<typeof NotificationBadge>;

export const Default: Story = {
args: { count: 1 }
};

export const Max: Story = {
args: { count: 100 }
};

0 comments on commit 7ffb63a

Please sign in to comment.