Updated footer

This commit is contained in:
2019-01-02 09:19:46 +11:00
parent 74add682e8
commit f21509f69e
+3 -2
View File
@@ -6,12 +6,13 @@ class Footer extends React.Component {
} }
render() { render() {
let year = new Date().getFullYear();
return ( return (
<footer> <footer>
<p>Copyright <a href="http://krgamestudios.com">KR Game Studios</a> 2016-2018</p> <p>Copyright <a href="http://krgamestudios.com">KR Game Studios</a> 2016-{year}</p>
</footer> </footer>
); );
}; };
} }
export default Footer; export default Footer;