create simple hello world app

This commit is contained in:
Bilal Catic
2019-05-23 19:19:54 +02:00
parent 2ff4e4ae8a
commit 01244c3118
4 changed files with 35 additions and 77 deletions

View File

@@ -0,0 +1,9 @@
import React from 'react';
export default function NotFound () {
return (
<div>
<h1>Page not found</h1>
</div>
);
}