mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-10 10:02:02 +05:30
8 lines
175 B
React
8 lines
175 B
React
|
import React from 'react';
|
||
|
|
||
|
export default function PageNotFound() {
|
||
|
return (
|
||
|
<h1>Sorry, but the thing you are looking for is definitely not here :(</h1>
|
||
|
);
|
||
|
}
|