initial layout

This commit is contained in:
Delucse
2020-07-23 11:16:38 +02:00
parent 9a18c5e414
commit 857da78c49
9 changed files with 220 additions and 55 deletions
+11
View File
@@ -0,0 +1,11 @@
import React, { Component } from 'react';
class NotFound extends Component {
render() {
return (
<h1>404 Not Found</h1>
);
};
}
export default NotFound;