mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
13 lines
No EOL
367 B
JavaScript
13 lines
No EOL
367 B
JavaScript
import { registerComponent } from 'meteor/vulcan:core';
|
|
import React from 'react';
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
const Footer = props => {
|
|
return (
|
|
<div className="footer"><a href="http://vulcanjs.org" target="_blank"><FormattedMessage id="app.powered_by"/></a></div>
|
|
)
|
|
}
|
|
|
|
Footer.displayName = "Footer";
|
|
|
|
registerComponent('Footer', Footer); |