mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 06:32:34 +01:00
21 lines
561 B
JavaScript
21 lines
561 B
JavaScript
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; |