Vulcan/packages/example-forum/lib/components/common/Footer.jsx

13 lines
375 B
React
Raw Normal View History

2017-09-04 18:37:21 +09:00
import { registerComponent } from 'meteor/vulcan:core';
import React from 'react';
import { FormattedMessage } from 'meteor/vulcan:i18n';
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);