blob: 8d0dcb16cbdea3f8727779127c9df8bfe1a06d39 [file] [log] [blame]
import React from 'react';
const NotFoundPage = () => {
return (
<div>
<h3>404 Page not found</h3>
</div>
)
}
export default NotFoundPage;