Added 404 page

This commit is contained in:
2019-05-07 21:48:20 +10:00
parent 1628b63eb2
commit 7a218368c2
9 changed files with 190 additions and 3 deletions
+12
View File
@@ -0,0 +1,12 @@
import React from 'react';
export default class Footer extends React.Component {
render() {
return (
<footer>
<p>Copyright <a href='https://krgamestudios.com'>KR Game Studios</a> 2019</p>
</footer>
);
}
}