From a0975e2a613d1367a320ddb6044293307e1921f4 Mon Sep 17 00:00:00 2001 From: leejeongho Date: Sat, 20 Jul 2024 02:38:14 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=83=80=EC=9E=85=20=EC=97=90=EB=9F=AC?= =?UTF-8?q?=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../core/sds/src/stories/Button.stories.tsx | 35 ------------------- .../FirstFeatureOfFirstDomainTestBox.tsx | 2 +- .../FirstFeatureOfFirstDomainTestButton.tsx | 2 +- .../FirstFeatureOfSecondDomainTestBox.tsx | 2 +- .../FirstFeatureOfSecondDomainTestButton.tsx | 2 +- 5 files changed, 4 insertions(+), 39 deletions(-) delete mode 100644 packages/core/sds/src/stories/Button.stories.tsx diff --git a/packages/core/sds/src/stories/Button.stories.tsx b/packages/core/sds/src/stories/Button.stories.tsx deleted file mode 100644 index 46fe730e..00000000 --- a/packages/core/sds/src/stories/Button.stories.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import { Button } from '../components/Button'; - -import type { Meta, StoryObj } from '@storybook/react'; - -const meta = { - title: 'Components/Button', - component: Button, - tags: ['autodocs'], - argTypes: { - children: { - control: 'text', - description: 'Button 컴포넌트가 표시할 내용을 정의합니다.', - }, - appName: { - control: 'text', - description: 'Button 컴포넌트를 click시 표시할 alert 내용을 정의합니다.', - }, - className: { - control: 'text', - description: 'Button 컴포넌트의 className을 정의합니다.', - }, - }, -} satisfies Meta; - -export default meta; -type Story = StoryObj; - -export const Default: Story = { - args: { - children: 'Button', - appName: 'undefined', - className: 'undefined', - }, - render: (args) => {displayText} diff --git a/packages/web-domains/src/first-domain/features/components/FirstFeatureOfFirstDomainTestButton.tsx b/packages/web-domains/src/first-domain/features/components/FirstFeatureOfFirstDomainTestButton.tsx index a9e3e65f..7831c519 100644 --- a/packages/web-domains/src/first-domain/features/components/FirstFeatureOfFirstDomainTestButton.tsx +++ b/packages/web-domains/src/first-domain/features/components/FirstFeatureOfFirstDomainTestButton.tsx @@ -17,7 +17,7 @@ export const FirstFeatureOfFirstDomainTestButton = ({ const { testText, handleChangeTestText } = useFirstFeatureOfFirstDomainTestButton(); return ( - diff --git a/packages/web-domains/src/second-domain/features/components/FirstFeatureOfSecondDomainTestBox.tsx b/packages/web-domains/src/second-domain/features/components/FirstFeatureOfSecondDomainTestBox.tsx index aa5fc48b..08d3a12a 100644 --- a/packages/web-domains/src/second-domain/features/components/FirstFeatureOfSecondDomainTestBox.tsx +++ b/packages/web-domains/src/second-domain/features/components/FirstFeatureOfSecondDomainTestBox.tsx @@ -14,7 +14,7 @@ export const FirstFeatureOfSecondDomainTestBox = ({ }: PropsWithChildren) => { return (
- {displayText} diff --git a/packages/web-domains/src/second-domain/features/components/FirstFeatureOfSecondDomainTestButton.tsx b/packages/web-domains/src/second-domain/features/components/FirstFeatureOfSecondDomainTestButton.tsx index 667af25b..4da28f97 100644 --- a/packages/web-domains/src/second-domain/features/components/FirstFeatureOfSecondDomainTestButton.tsx +++ b/packages/web-domains/src/second-domain/features/components/FirstFeatureOfSecondDomainTestButton.tsx @@ -15,7 +15,7 @@ export const FirstFeatureOfSecondDomainTestButton = ({ const { testText, handleChangeTestText } = useFirstFeatureOfFirstDomainTestButton(); return ( -