fantasy-manager/components/BugReport.tsx
Lukas Schaefer 33a307d19a
Some checks failed
Build / build (pull_request) Successful in 1m2s
Cypress / cypress (pull_request) Successful in 2m31s
Build / build (push) Successful in 1m11s
Cypress / cypress (push) Has been cancelled
First commit for moving git instances
Signed-off-by: Lukas Schaefer <lukas@lschaefer.xyz>
2026-07-30 19:08:51 -04:00

23 lines
707 B
TypeScript

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 (
<>
<h2>{t("Reporting Bugs")}</h2>
<p>
<Link
href="https://git.lschaefer.xyz/lukasdotcom/fantasy-manager/issues/new?assignees=&labels=&template=bug_report.md&title="
rel="noopener noreferrer"
target="_blank"
>
{t("All bugs can be reported here. ")}
</Link>
{t("These bugs are then fixed as quickly as possible. ")}
</p>
</>
);
}