diff --git a/src/components/common/Select/Select.stories.tsx b/src/components/common/Select/Select.stories.tsx index 490b104..3722e9b 100644 --- a/src/components/common/Select/Select.stories.tsx +++ b/src/components/common/Select/Select.stories.tsx @@ -1,7 +1,9 @@ import type { Meta, StoryObj } from '@storybook/react'; import { ChangeEvent, useState } from 'react'; import { Select } from '.'; +import Check from '../Check'; import Icon from '../Icon'; +import { Option } from '../Option'; import { Tag } from '../Tag'; // More on how to set up stories at: https://storybook.js.org/docs/writing-stories#default-export @@ -249,10 +251,6 @@ export const Tag_Select: Story = { id: 0, label: 'Tag', }, - { - id: 1, - label: 'Tag', - }, ]); const handleChangeText = (e: ChangeEvent) => { @@ -273,7 +271,7 @@ export const Tag_Select: Story = { return (
-
+
{text && ( -
-
추가 "{text}"
+
+ + {tags.map((tag) => ( + + ))}
)}