Vulcan/packages/nova-base-components/lib/common/Footer.jsx
2016-06-09 17:42:20 +09:00

12 lines
No EOL
303 B
JavaScript

import React from 'react';
import { FormattedMessage } from 'react-intl';
const Footer = props => {
return (
<div className="footer"><a href="http://telescopeapp.org" target="_blank"><FormattedMessage id="app.powered_by"/></a></div>
)
}
Footer.displayName = "Footer";
module.exports = Footer;