diff --git a/src/stories/button.stories.tsx b/src/stories/button.stories.tsx deleted file mode 100644 index 09c27fa..0000000 --- a/src/stories/button.stories.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import Button from '@/widgets/Button'; -import type { Meta, StoryObj } from '@storybook/react'; -import { fn } from '@storybook/test'; - -const meta: Meta = { - title: 'Button', - component: Button, - tags: ['autodocs'], -}; - -type Story = StoryObj; - -export const Primary: Story = { - args: { - label: '버튼', - clickFn: fn(), - }, -}; - -export default meta; diff --git a/src/widgets/Button.tsx b/src/widgets/Button.tsx deleted file mode 100644 index 084402a..0000000 --- a/src/widgets/Button.tsx +++ /dev/null @@ -1,14 +0,0 @@ -export interface IButton { - label: string; - clickFn: () => void; -} - -const Button = ({ label, clickFn }: IButton) => { - return ( - - ); -}; - -export default Button;