blob: 8d0dcb16cbdea3f8727779127c9df8bfe1a06d39 [file] [log] [blame]
Larbi Gharibe9af9732021-03-31 15:08:01 +01001import React from 'react';
2
3
4const NotFoundPage = () => {
5 return (
6 <div>
7 <h3>404 Page not found</h3>
8 </div>
9 )
10}
11
12export default NotFoundPage;