You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-wallet/src/js/components/common/Footer.js

18 lines
456 B

/* @flow */
'use strict';
import React from 'react';
const Footer = (props: any): any => {
return (
<footer>
<span>© 2018</span>
<a href="http://satoshilabs.com" target="_blank" className="satoshi green">SatoshiLabs</a>
<a href="tos.pdf" target="_blank" className="green">Terms</a>
<a onClick={ props.showLog } className="green">Show Log</a>
</footer>
);
}
export default Footer;