2017-01-25 19:36:23 +01:00
|
|
|
/**
|
2017-03-02 12:47:52 +01:00
|
|
|
* File: footer.js
|
2017-01-25 19:36:23 +01:00
|
|
|
* Author: Markus Grigull <mgrigull@eonerc.rwth-aachen.de>
|
2017-03-02 12:47:52 +01:00
|
|
|
* Date: 02.03.2017
|
|
|
|
* Copyright: 2017, Institute for Automation of Complex Power Systems, EONERC
|
2017-01-25 19:36:23 +01:00
|
|
|
* This file is part of VILLASweb. All Rights Reserved. Proprietary and confidential.
|
|
|
|
* Unauthorized copying of this file, via any medium is strictly prohibited.
|
|
|
|
**********************************************************************************/
|
|
|
|
|
2017-03-02 12:47:52 +01:00
|
|
|
import React, { Component } from 'react';
|
2017-01-25 19:36:23 +01:00
|
|
|
|
2017-03-02 12:47:52 +01:00
|
|
|
class Footer extends Component {
|
|
|
|
render() {
|
|
|
|
return (
|
2017-03-16 10:22:25 +01:00
|
|
|
<footer className="app-footer">
|
2017-03-02 12:47:52 +01:00
|
|
|
Copyright © {new Date().getFullYear()}
|
|
|
|
</footer>
|
|
|
|
);
|
2017-01-25 19:36:23 +01:00
|
|
|
}
|
2017-03-02 12:47:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Footer;
|