JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/base/jquery-ui.css">
<div id="tabs">
    <ul>
        <li><a href="#tabs-1">Tab 1</a></li>
        <li><a href="#tabs-2">Tab 2</a></li>
    </ul>
    <div id="tabs-1">
        <!--<SampleControl:MyControl runat="server" id="sampleControl" name="JustAnExample" />-->
        More stuff in here for tab 1
    </div>
    <div id="tabs-2">
        More stuff in here for tab 2
    </div>
</div>

JavaScript

$("#tabs").tabs();