1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-08-30 03:30:34 +02:00

dual rendering possible using --singles

This commit is contained in:
Pomax
2016-01-16 17:57:16 -08:00
parent a346272dee
commit 819b628456
21 changed files with 4748 additions and 119 deletions

17
components/Footer.jsx Normal file
View File

@@ -0,0 +1,17 @@
var React = require('react');
var Footer = React.createClass({
render: function() {
return (
<footer className="copyright">
This article is © 2011-2016 to me, Mike "Pomax" Kamermans, but the text, code,
and images are <a href="https://github.com/Pomax/bezierinfo/blob/gh-pages/LICENSE.md">almost
no rights reserved</a>. Go do something cool with it!
</footer>
);
}
});
module.exports = Footer;