JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.css">
<!DOCTYPE html>
<html>
<head>
<title>jQuery Mobile テスト用</title>
<meta charset=utf-8 />
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>jQuery Mobile テスト用</h1>
</div>
<div data-role="content">
<ul data-role="listview" data-inset="true">
<li>リスト01</li>
<li>リスト02</li>
<li>リスト03</li>
<li>リスト04</li>
</ul>
</div>
<div data-role="footer">
<h4>footer</h4>
</div>
</div>
</body>
</html>