react-image-lightbox
Version:
A lightbox component for React.js
26 lines (25 loc) • 839 B
HTML
<html>
<head>
<title>React Image Lightbox</title>
<link rel="stylesheet" href="app.css">
</head>
<body>
<div class="container">
<h1>React Starter Component</h1>
<h2><a href="https://github.com/fritz-c/react-image-lightbox">View project on GitHub</a></h2>
<div id="app"></div>
</div>
<script src="http://cdnjs.cloudflare.com/ajax/libs/react/0.14.7/JSXTransformer.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/react/0.14.7/react.js"></script>
<script src="standalone.js"></script>
<script type="text/jsx">
var Example = React.createClass({
render: function() {
return <ReactImageLightbox />
}
});
React.render(<Example />, document.getElementById('app'));
</script>
</body>
</html>