forked from ivacf/ivanc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFooter.js
More file actions
executable file
路25 lines (21 loc) 路 776 Bytes
/
Copy pathFooter.js
File metadata and controls
executable file
路25 lines (21 loc) 路 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
var React = require('react');
var FetchUtils = require('./FetchUtils');
var Footer = React.createClass({
render: function() {
return (
<div className="footer">
<p>
馃殌 Built with <a target="_blank" href="https://facebook.github.io/react/">React</a> and <a target="_blank" href="http://www.django-rest-framework.org/">Django REST framework</a>. 馃殌
</p>
<p>
See source code on <a target="_blank" href="https://github.com/ivacf/ivanc">GitHub</a>
</p>
<p>
Check out the REST API <a target="_blank" href={FetchUtils.baseUrl}>here</a>.
</p>
<p className="footerCopyRight">漏 2016 Ivan Carballo </p>
</div>
);
}
});
module.exports=Footer