blob: 9738fe3c5feb85f17b068358ab02b328bc95cc19 [file] [log] [blame]
Larbi Gharibe9af9732021-03-31 15:08:01 +01001const NotFoundPage = () => {
simond47ef9e2022-09-28 22:24:28 -04002 return (
3 <div>
4 <h3>404 Page not found</h3>
5 </div>
6 );
7};
Larbi Gharibe9af9732021-03-31 15:08:01 +01008
simond47ef9e2022-09-28 22:24:28 -04009export default NotFoundPage;