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

9 lines
205 B
React
Raw Normal View History

import React from 'react';
2016-02-16 15:08:30 +09:00
const Footer = props => {
return (
2016-03-24 16:12:03 +09:00
<div className="footer"><a href="http://telescopeapp.org" target="_blank">Powered By Telescope</a></div>
2016-02-16 15:08:30 +09:00
)
}
module.exports = Footer;