1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 14:42:31 +01:00
flox/client/app/partials/footer.js

21 lines
561 B
JavaScript
Raw Normal View History

2015-07-27 20:49:37 +02:00
import React from 'react';
class Footer extends React.Component {
render() {
return (
<footer className="site-footer">
<div className="wrap">
<span className="attribution">
<a href="https://www.themoviedb.org/" target="_blank"><i className="icon-tmdb"></i></a> This product uses the TMDb API but is not endorsed or certified by TMDb
</span>
<a className="icon-github" href="https://github.com/devfake/flox" target="_blank"></a>
</div>
</footer>
);
}
}
export default Footer;