reactui
Version:
A components library for ReactJS. This is part of the Gearz project
41 lines (33 loc) • 1.43 kB
HTML
<html>
<head>
<meta charset="utf-8">
<title>Pager component</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"/>
<!-- React-components -->
<link href="../../../src/components/navigation/pager/pager.css" type="text/css" rel="stylesheet"/>
<script src="../../../src/components/gearz.mixin.js"></script>
<script src="../../../src/components/navigation/pager/pager.jsx" type="text/jsx"></script>
<script src="pagerSample.jsx" type="text/jsx"></script>
</head>
<body>
<div class="container">
<div id="output"></div>
<script type="text/jsx">
React.render(
<PagerSample />,
document.getElementById("output")
);
</script>
</div>
</body>
</html>