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

13 lines
No EOL
366 B
JavaScript

import Telescope from 'meteor/nova:lib';
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";
Telescope.registerComponent('Footer', Footer);