G-Loot DS — select input single

by Augustin Hiebel

HTML

<div className="form-group form-select">
  <label htmlFor="favorite-game">Favorite game:</label>
  <select id="favorite-game">
    <option disabled selected>Choose an option</option>
    <option>PUBG: BATTLEGROUNDS</option>
    <option>DOTA 2</option>
    <option>VALORANT</option>
  </select>
</div>