reactui
Version:
A components library for ReactJS. This is part of the Gearz project
54 lines (45 loc) • 2.46 kB
HTML
<html>
<head>
<meta charset="utf-8">
<title>TabControl</title>
<!-- Normalize -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.2/normalize.min.css" type="text/css"
rel="stylesheet"/>
<!-- React.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.12.2/react-with-addons.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.12.2/JSXTransformer.js"></script>
<!-- Bootstrap -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.2/css/bootstrap.min.css" type="text/css"
rel="stylesheet"/>
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.2/css/bootstrap-theme.css" type="text/css"
rel="stylesheet"/>
<!-- HighlightJs -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/styles/default.min.css" type="text/css" rel="stylesheet" />
<script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js"></script>
<script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/languages/javascript.min.js"></script>
<!-- React-components-sample -->
<link href="../../samples.css" type="text/css" rel="stylesheet" />
<script src="../../codeSample.jsx" type="text/jsx"></script>
<!-- React-components -->
<link href="../../../src/components/layout/tabControl/tabControl.css" type="text/css" rel="stylesheet"/>
<script src="../../../src/components/gearz.mixin.js"></script>
<script src="../../../src/components/editors/textbox/textbox.js" type="text/jsx"></script>
<script src="../../../src/components/layout/formGroup/formGroup.jsx" type="text/jsx"></script>
<script src="../../../src/components/layout/tabControl/tab.jsx" type="text/jsx"></script>
<script src="../../../src/components/layout/tabControl/tabHeader.jsx" type="text/jsx"></script>
<script src="../../../src/components/layout/tabControl/tabControl.jsx" type="text/jsx"></script>
<script src="tabControlSample.jsx" type="text/jsx"></script>
</head>
<body>
<div class="container">
<div id="output"></div>
<script type="text/jsx">
React.render(
<TabControlSample />,
document.getElementById("output")
);
</script>
</div>
</body>
</html>