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/Footer.js

18 lines
394 B

/* @flow */
'use strict';
import React, { Component } from 'react';
export default class Footer extends Component {
render() {
return (
<footer>
<div className="layout-wrapper">
<span>© 2017</span>
<a href="http://satoshilabs.com">SatoshiLabs</a>
</div>
</footer>
);
}
}