mirror of
https://github.com/Pomax/BezierInfo-2.git
synced 2025-02-17 22:24:38 +01:00
17 lines
446 B
JavaScript
17 lines
446 B
JavaScript
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; |