JSFiddle - React, Tailwind, and code Playground

by Softlink

HTML

<form action="">
    <fieldset>
        <legend>new controls</legend>
        <input type="text">
        <label for="">text</label>
        <br>
        <br>
        <input type="submit" value="Кнопка">
        <label for="">submit</label>
        <br>
        <br>
        <input type="checkbox">
        <label for="">checkbox</label>
        <br>
        <br>
        <input type="radio">
        <label for="">radio</label>
        <br>
        <br>
        <input type="file">
        <br>
        <br>
            <select name="select">
          <option selected="selected">Выберите героя</option>
          <option>Чебурашка</option>
          <option>Крокодил Гена</option>
          <option>Шапокляк</option>
          <option>Крыса Лариса</option>
      </select><br><br>
            <textarea name="" id="" cols="30" rows="10"></textarea>
            <label for="">textarea</label>
    </fieldset>
</form>