Files
ThreadNet-Web/src/components/views/auth/AuthFooter.tsx
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
713 B
TypeScript
Raw Normal View History

/*
2024-09-09 14:57:16 +01:00
Copyright 2019-2024 New Vector Ltd.
Copyright 2019 The Matrix.org Foundation C.I.C.
2024-09-09 14:57:16 +01:00
Copyright 2015, 2016 OpenMarket Ltd
2024-09-09 14:57:16 +01:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details.
*/
2017-05-30 16:09:57 +02:00
import React from "react";
2021-10-22 17:23:32 -05:00
import { _t } from "../../../languageHandler";
2020-08-29 12:14:16 +01:00
export default class AuthFooter extends React.Component {
2021-07-15 15:20:43 +02:00
public render(): React.ReactNode {
return (
2022-08-01 08:31:14 +01:00
<footer className="mx_AuthFooter" role="contentinfo">
<a href="https://matrix.org" target="_blank" rel="noreferrer noopener">
{_t("auth|footer_powered_by_matrix")}
</a>
2022-08-01 08:31:14 +01:00
</footer>
);
2020-08-29 12:14:16 +01:00
}
}