accounts-frontend/src/pages/404/PageNotFound.jsx

8 lines
175 B
React
Raw Normal View History

2016-06-03 00:56:09 +05:30
import React from 'react';
export default function PageNotFound() {
return (
<h1>Sorry, but the thing you are looking for is definitely not here :(</h1>
);
}