back
RadioGroup , shadcn/ui components例
id: 141, 2024-09-06
概要
shadcn/ui , RadioGroup 実装例になります。
まとめリンクは、下記になります。
関連
- src/client/Radio.tsx
- https://github.com/kuc-arc-f/express_49preact/blob/main/src/client/Radio.tsx
<Label>RadioCheck</Label>
<RadioGroup defaultValue="option-one">
<div className="flex items-center space-x-2">
<RadioGroupItem value="option-one" id="option-one" />
<Label htmlFor="option-one">Option One</Label>
</div>
<div className="flex items-center space-x-2">
<RadioGroupItem value="option-two" id="option-two" />
<Label htmlFor="option-two">Option Two</Label>
</div>
</RadioGroup>