* Initial RESTful API * RESTful API tests * Scrapping error handling refactored * Initial GraphQL API * GraphQL API tests
9 lines
207 B
TypeScript
9 lines
207 B
TypeScript
import { FC } from "react";
|
|
import { CustomError } from "../components";
|
|
|
|
const My404: FC = () => (
|
|
<CustomError statusCode={404} statusText={"This page could not be found"} />
|
|
);
|
|
|
|
export default My404;
|