JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0b2/jquery.mobile-1.0b2.min.css">
<script src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0b2/jquery.mobile-1.0b2.min.js"></script>
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Test</title>
    </head>
    <body>        
        <div data-role="page" id="home">
            <div data-role="header">
                <h1>Home</h1>
            </div>
            <div data-role="content">
                <div data-role="collapsible-set">
                    
                    <div data-role="collapsible" data-collapsed="true">
                        <h3>Section A</h3>
                        <p>I'm the collapsible set content for section B.</p>
                    </div>
                    
                    <div data-role="collapsible" data-collapsed="true">
                        <h3>Section B</h3>
                        <p>I'm the collapsible set content for section B.</p>
                    </div>
                    
                    <div data-role="collapsible" data-collapsed="true">
                        <h3>Section C</h3>
                        <p>I'm the collapsible set content for section C.</p>
                    </div>
                </div>
            </div>
        </div>
    </body>
</html>