10 lines
224 B
JavaScript
10 lines
224 B
JavaScript
// 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; |