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.
15 lines
426 B
15 lines
426 B
import React from "react";
|
|
import {NO_INTERNET} from "@/components/Errors";
|
|
import Error from "@/app/(utility)/Error";
|
|
import noInternetPict from "@/assets/images/NoInternet.png";
|
|
|
|
export default function NoInternet() {
|
|
return (
|
|
<Error
|
|
picture={noInternetPict}
|
|
problem="Pas d'internet"
|
|
description={NO_INTERNET}
|
|
information="Réessayez plus tard"
|
|
/>
|
|
);
|
|
} |