Advertisement
ElfikCo

radio react

Apr 12th, 2020
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <div className="" onChange={this.handleChange}>
  2. <label>
  3. <input className="with-gap" style={{opacity: 1}} type="radio" id="admin" name="role" value="ROLE_ADMIN" checked={this.state.role === "ROLE_ADMIN"}/>
  4. Administrator
  5. </label>
  6. <br />
  7. <label>
  8. <input className="with-gap" style={{opacity: 1}} type="radio" id="table" name="role" value="ROLE_TABLE" checked={this.state.role === "ROLE_TABLE"}/>
  9. Stolik
  10. </label>
  11. <br />
  12. <label>
  13. <input className="with-gap" style={{opacity: 1}} type="radio" id="worker" name="role" value="ROLE_WORKER" checked={this.state.role === "ROLE_WORKER"}/>
  14. Pracownik
  15. </label>
  16. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement