Radio

作者:spj2401Dev0 点赞MIT

实时预览

源代码

export default function Component() {
  return (
    <fieldset>
  <legend>Frameworks</legend>

  <div className="button-group">
    <input type="radio" id="svelt" name="frameworks" checked="" />
    <label htmlFor="svelt">Svelt</label>
  </div>

  <div className="button-group">
    <input type="radio" id="react" name="frameworks" />
    <label htmlFor="react">React</label>
  </div>

  <div className="button-group">
    <input type="radio" id="vue" name="frameworks" />
    <label htmlFor="vue">Vue</label>
  </div>
</fieldset>
  );
}