From 5260f53f03562ae080255bd84e95723ed5af9206 Mon Sep 17 00:00:00 2001 From: Lee Seung Heon Date: Wed, 21 Jan 2026 23:49:01 +0900 Subject: [PATCH] =?UTF-8?q?=ED=81=AC=EB=A1=9C=EB=A7=88=ED=8B=B1=20?= =?UTF-8?q?=EC=98=A4=EB=A5=98=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stories/Select.stories.tsx | 48 ---------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 src/stories/Select.stories.tsx diff --git a/src/stories/Select.stories.tsx b/src/stories/Select.stories.tsx deleted file mode 100644 index 138a8c6..0000000 --- a/src/stories/Select.stories.tsx +++ /dev/null @@ -1,48 +0,0 @@ -import type { Meta, StoryObj } from "@storybook/react"; -import Select from "@/src/shared/ui/select"; - -const meta: Meta = { - title: "ui-kit/Select", - component: Select, - parameters: { - layout: "centered", - }, -}; - -export default meta; -type Story = StoryObj; - -const OPTIONS = [ - { value: "a", label: "옵션 A" }, - { value: "b", label: "옵션 B" }, - { value: "c", label: "옵션 C", disabled: true }, -]; - -export const Default: Story = { - args: { - name: "category", - defaultValue: "", - placeholder: "선택하세요", - options: OPTIONS, - }, -}; - -export const WithLabel: Story = { - args: { - label: "카테고리", - name: "category", - defaultValue: "", - placeholder: "선택하세요", - options: OPTIONS, - }, -}; - -export const Disabled: Story = { - args: { - name: "category", - defaultValue: "", - placeholder: "선택하세요", - options: OPTIONS, - disabled: true, - }, -};