mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
12 lines
No EOL
303 B
JavaScript
12 lines
No EOL
303 B
JavaScript
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";
|
|
|
|
module.exports = Footer; |