JSFiddle - React, Tailwind, and code Playground

by gyaresu

HTML

<!DOCTYPE html>
<html>
<head>
    <title>listview test</title>
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0-rc.1/jquery.mobile-1.1.0-rc.1.min.css" />
    <script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.1.0-rc.1/jquery.mobile-1.1.0-rc.1.min.js"></script>
</head>
<body>
    <div data-role="page" data-fullscreen="true">
        <div data-role="content"><!-- content -->
            <ul id="listview" data-role="listview" data-filter="true" data-inset="true" data-filter-placeholder="Start typing here to search...">
            </ul>
        </div><!-- /content -->

    </div><!-- /page -->
</body>
</html>