mirror of
https://github.com/Pomax/BezierInfo-2.git
synced 2025-02-23 17:14:49 +01:00
17 lines
446 B
React
17 lines
446 B
React
|
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;
|