Vulcan/packages/nova-base-components/lib/common/Footer.jsx

12 lines
303 B
React
Raw Normal View History

import React from 'react';
2016-06-09 17:42:20 +09:00
import { FormattedMessage } from 'react-intl';
2016-02-16 15:08:30 +09:00
const Footer = props => {
return (
2016-06-09 17:42:20 +09:00
<div className="footer"><a href="http://telescopeapp.org" target="_blank"><FormattedMessage id="app.powered_by"/></a></div>
2016-02-16 15:08:30 +09:00
)
}
Footer.displayName = "Footer";
2016-02-16 15:08:30 +09:00
module.exports = Footer;