]> git.localhorst.tv Git - alttp.git/blob - resources/js/components/pages/NotFound.js
add helmet
[alttp.git] / resources / js / components / pages / NotFound.js
1 import React from 'react';
2 import { Helmet } from 'react-helmet';
3
4 const NotFound = () =>
5         <div>
6                 <Helmet>
7                         <title>Not Found</title>
8                 </Helmet>
9                 <h1>Not Found</h1>
10                 <p>Sorry</p>
11         </div>;
12
13 export default NotFound;