JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.css">
<script src="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.js"></script>
<div data-role="page">
    <div data-role="content">
<div data-role="fieldcontain">     <label for="select-choice-1" class="select">Choose shipping method:</label>     <select name="select-choice-1" id="select-choice-1" data-iconpos="noicon">         <option value="standard">Standard: 7 day</option>         <option value="rush">Rush: 3 days</option>         <option value="express">Express: next day</option>         <option value="overnight">Overnight</option>     </select> </div>
    </div>
</div>