-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFooter.js
executable file
·34 lines (32 loc) · 997 Bytes
/
Footer.js
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
26
27
28
29
30
31
32
33
34
/**
* Copyright (c) 2017-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
const React = require('react');
class Footer extends React.Component {
render() {
return (
<footer className="nav-footer" id="footer">
<a
href="https://opensource.facebook.com/"
target="_blank"
rel="noreferrer noopener"
className="fbOpenSource">
<img
src={`${this.props.config.baseUrl}img/oss_logo.png`}
alt="Facebook Open Source"
width="170"
height="45"
/>
</a>
<section className="copyright">
{this.props.config.copyright} documentation generated with <a href="https://docusaurus.io">Docusaurus</a>,
written by <a href={this.props.config.persoWebsite}>Lucas Tostée</a>.
</section>
</footer>
);
}
}
module.exports = Footer;