You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mobile/components/error/InternalErrorProblem.tsx

17 lines
427 B

import Error from "@/app/(utility)/Error";
//@ts-ignore
import internalErrorPict from "@/assets/images/InternalError.png";
import { INTERNAL_ERROR } from "@/components/Errors";
import React from "react";
export default function InternalError() {
return (
<Error
picture={internalErrorPict}
problem="Problème interne"
description={INTERNAL_ERROR}
information="Contactez le support"
/>
);
}