Added 404 page when a request does not match any routes.

This commit is contained in:
2017-10-06 11:56:22 +02:00
parent 6d5c1e8d6d
commit 1633be1276

View File

@@ -0,0 +1,10 @@
// components/NotFound.js
import React from 'react';
const NotFound = () =>
<div>
<h3>404 page not found</h3>
<p>We are sorry but the page you are looking for does not exist.</p>
</div>
export default NotFound;