* Initial RESTful API

* RESTful API tests

* Scrapping error handling refactored

* Initial GraphQL API

* GraphQL API tests
This commit is contained in:
David
2021-03-28 23:17:47 +02:00
committed by GitHub
parent 7288e9ace7
commit 2938f780aa
15 changed files with 1873 additions and 671 deletions

View File

@@ -2,7 +2,7 @@ import { FC } from "react";
import { CustomError } from "../components";
const My404: FC = () => (
<CustomError statusCode={404} />
<CustomError statusCode={404} statusText={"This page could not be found"} />
);
export default My404;