Files
twenty/packages/twenty-docs/l/ko/twenty-ui/input/select.mdx
T
Charles Bochet 2674589b44 Remove any recoil reference from project (#18250)
## Remove all Recoil references and replace with Jotai

### Summary

- Removed every occurrence of Recoil from the entire codebase, replacing
with Jotai equivalents where applicable
- Updated `README.md` tech stack: `Recoil` → `Jotai`
- Rewrote documentation code examples to use
`createAtomState`/`useAtomState` instead of `atom`/`useRecoilState`, and
removed `RecoilRoot` wrappers
- Cleaned up source code comment and Cursor rules that referenced Recoil
- Applied changes across all 13 locale translations (ar, cs, de, es, fr,
it, ja, ko, pt, ro, ru, tr, zh)
2026-02-26 10:28:40 +01:00

49 lines
2.2 KiB
Plaintext

---
title: 선택
image: /images/user-guide/what-is-twenty/20.png
---
<Frame>
<img src="/images/user-guide/what-is-twenty/20.png" alt="헤더" />
</Frame>
사용자가 미리 정의된 옵션 목록에서 값을 선택할 수 있도록 합니다.
<Tabs>
<Tab title="사용법">
```jsx
import { IconTwentyStar } from 'twenty-ui/display';
import { Select } from '@/ui/input/components/Select';
export const MyComponent = () => {
return (
<Select
className
disabled={false}
label="옵션을 선택하세요"
options={[
{ value: 'option1', label: '옵션 A', Icon: IconTwentyStar },
{ value: 'option2', label: '옵션 B', Icon: IconTwentyStar },
]}
value="option1"
/>
);
};
```
</Tab>
<Tab title="프로퍼티">
| 프로퍼티 | 유형 | 설명 |
| -------- | --- | ---------------------------------------------------------------------------------------------- |
| 클래스 네임 | 문자열 | 추가 스타일링을 위한 선택적 CSS 클래스 |
| disabled | 부울 | `true`로 설정하면 사용자는 이 구성 요소와 상호작용할 수 없습니다. |
| 라벨 | 문자열 | `선택` 구성 요소의 목적을 설명하는 라벨 |
| onChange | 함수 | 선택된 값이 변경될 때 호출되는 함수 |
| 옵션 | 배열 | `선택된` 구성 요소에 사용할 수 있는 옵션들을 나타냅니다. 각 객체에는 `값`(고유 식별자), `라벨`(고유 식별자) 및 선택적 `아이콘`이 포함된 객체의 배열입니다. |
| 값 | 문자열 | 현재 선택된 값을 나타냅니다. `옵션` 배열에서 하나의 `값` 속성과 일치해야 합니다. |
</Tab>
</Tabs>