1
0
Fork 0
This repository has been archived on 2022-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
sudoscientist-js-frontend/src/components/Footer.js
2019-08-03 21:14:26 -04:00

16 lines
318 B
JavaScript

import React, { Component } from 'react';
class Footer extends Component {
render() {
return (
<div className="ui section divider">
<div className="ui horizontal inverted small">
<p><i>© 2019 SudoScientist</i></p>
</div>
</div>
);
}
}
export default Footer;