Skip to content

Commit

Permalink
test: (#740) 알림 리스트를 담은 컨테이너 스토리북 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
chsua committed Oct 14, 2023
1 parent c2766f6 commit 9811b51
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import type { Meta } from '@storybook/react';

import AlarmContainer from '.';

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

export default meta;

export const Default = () => {
return <AlarmContainer closeToolTip={() => {}} />;
};

0 comments on commit 9811b51

Please sign in to comment.