JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="//code.jquery.com/mobile/1.4.0/jquery.mobile-1.4.0.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/mobile/1.4.0/jquery.mobile-1.4.0.js"></script>
<div data-role="page">
    <div data-role="header" data-add-back-btn="true">
        <h1>My header</h1>
    </div>
    <div class="ui-content">
        <a href="#Page2">Page 2</a>
    </div>
</div>
<div id="Page2" data-role="page">
    <div data-role="header" data-add-back-btn="true">
        <h1>My header2</h1>
    </div>
    <div class="ui-content">
        Page 2
    </div>
</div>