JSFiddle - React, Tailwind, and code Playground

HTML

<label>
    Sort by:
    <select>
        <option>one</option>
        <option>two</option>
    </select>
</label>

or

<label for="my-select">Sort by: </label>
<select id="my-select">
    <option>one</option>
    <option>two</option>
</select>