JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/themes/base/jquery-ui.css">
<html>
    <body>
        <form>
            scroll right
            <input type="text" id="date" />
        </form>
    </body>
</html>

CSS

#date {
    margin-left: 600px;
}

JavaScript

$(function() {
    $('#date').datepicker();
});