import { Component } from "inferno"; import { Link } from "inferno-router"; import { getDocsLanguage } from "../utils"; import { i18n } from "../i18next"; export class LinkLine extends Component { constructor(props: any, context: any) { super(props, context); } render() { return ( <> {i18n.t("join")} {i18n.t("news")} {i18n.t("about")} {i18n.t("apps")} {i18n.t("donate")} {i18n.t("docs")} {i18n.t("contact")} ); } }