mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
13 lines
No EOL
369 B
JavaScript
13 lines
No EOL
369 B
JavaScript
import { registerComponent } from 'meteor/nova:core';
|
|
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";
|
|
|
|
registerComponent('Footer', Footer); |