We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RadioGroup
Radio
const [value, setValue] = React.useState('option1'); return ( <RadioGroup value={value} onValueChange={(newValue) => setValue(newValue)} > <Radio value="apple" id="option1"> 사과 </Radio> <Radio value="orange" id="option2"> 오렌지 </Radio> <Radio value="grape" id="option3"> 포도 </Radio> </RadioGroup> );
The text was updated successfully, but these errors were encountered:
오.. 당근 디자인 시스템은 오픈소스였군요
Sorry, something went wrong.
내부 구현체는 공개되어 있지 않고 스펙 정도만 나와있는 것 같더라구요~
heeji289
No branches or pull requests
컴포넌트 기능 정의
RadioGroup
,Radio
로 Group에 감싸있는 옵션들을 보여주고 사용자 입력을 제어합니다.디자인 요구사항
컴포넌트 스펙
기술적 고려사항
참고 자료
추가 논의사항
The text was updated successfully, but these errors were encountered: