Radio
作者:Na3ar-17♥ 0 点赞MIT
实时预览
源代码
export default function Component() {
return (
<div className="radio-input">
<label className="label">
<input
type="radio"
id="value-1"
checked=""
name="value-radio"
value="value-1"
/>
<p className="text">Designer</p>
</label>
<label className="label">
<input type="radio" id="value-2" name="value-radio" value="value-2" />
<p className="text">Student</p>
</label>
<label className="label">
<input type="radio" id="value-3" name="value-radio" value="value-3" />
<p className="text">Teacher</p>
</label>
</div>
);
}