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