2019-05-23 19:19:54 +02:00
|
|
|
import React from 'react';
|
2019-06-16 12:18:48 +02:00
|
|
|
import MainMenu from '../../components/MainMenu';
|
2019-05-23 19:19:54 +02:00
|
|
|
|
|
|
|
|
export default function NotFound () {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
2019-05-27 14:39:22 +02:00
|
|
|
<MainMenu/>
|
|
|
|
|
<hr />
|
2019-05-23 19:19:54 +02:00
|
|
|
<h1>Page not found</h1>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|