react-filterable-table
Version:
Extendable table with filtering, sorting, paging, and more
40 lines (37 loc) • 1.45 kB
HTML
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="../dist/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script crossorigin src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
</head>
<body>
<div class="container">
<h1 class="text-center">
Example with Render Functions
</h1>
<div class="text-center">
<a href="https://github.com/ianwitherow/react-filterable-table/blob/master/example-alt/js/app.jsx">
Source
</a>
</div>
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<div id="root"></div>
</div>
</div>
</div>
<script src="js/dist/example-alt.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-49863062-4', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>