JSFiddle - React, Tailwind, and code Playground

HTML

<label class="required" for="username">Username</label>
<input id="username" type="text" value="" name="username">

CSS

label.required:after {
    content: " *";
}