accounts-frontend/src/pages/404/PageNotFound.jsx
2016-06-02 22:26:09 +03:00

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>
);
}