joinlemmy-site/src/shared/components/link-line.tsx

27 lines
718 B
TypeScript
Raw Normal View History

import { Component } from "inferno";
import { Link } from "inferno-router";
import { i18n } from "../i18next";
export class LinkLine extends Component<any, any> {
constructor(props: any, context: any) {
super(props, context);
}
render() {
return (
<>
2021-03-25 00:07:48 +00:00
<Link to="/instances">{i18n.t("join")}</Link>
<Link to="/apps">{i18n.t("apps")}</Link>
<Link to="/support">{i18n.t("support")}</Link>
<a href="/docs/en/index.html">{i18n.t("docs")}</a>
<a
href="/docs/en/code_of_conduct.html"
title={i18n.t("code_of_conduct")}
>
{i18n.t("coc")}
</a>
<Link to="/contact">{i18n.t("contact")}</Link>
</>
);
}
}