import { useContext } from "react"; import Link from "../components/Link"; import { TranslateContext } from "../Modules/context"; // A paragraph with a link explaining how to report bugs export default function BugReport() { const t = useContext(TranslateContext); return ( <>
{t("All bugs can be reported here. ")} {t("These bugs are then fixed as quickly as possible. ")}
> ); }