]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/pages/NotFound.js
add helmet
[alttp.git] / resources / js / components / pages / NotFound.js
index 5e2059615231af6b77472783f3211310f3d6a779..19ccc7232ea2f8be9d4593da24f67f42a5516ba6 100644 (file)
@@ -1,8 +1,13 @@
 import React from 'react';
+import { Helmet } from 'react-helmet';
 
-const NotFound = () => <div>
-       <h1>Not Found</h1>
-       <p>Sorry</p>
-</div>;
+const NotFound = () =>
+       <div>
+               <Helmet>
+                       <title>Not Found</title>
+               </Helmet>
+               <h1>Not Found</h1>
+               <p>Sorry</p>
+       </div>;
 
 export default NotFound;