This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Saumya Pandey 3f030540b3
fix: Add translation hooks on settings screen (#2298)
Co-authored-by: Tom Moor <tom.moor@gmail.com>
2021-07-15 14:50:36 +05:30

36 lines
1.0 KiB
JavaScript

// @flow
import * as React from "react";
import { useTranslation, Trans } from "react-i18next";
import Button from "components/Button";
import Heading from "components/Heading";
import HelpText from "components/HelpText";
import Scene from "components/Scene";
import ZapierIcon from "components/ZapierIcon";
function Zapier() {
const { t } = useTranslation();
return (
<Scene title={t("Zapier")} icon={<ZapierIcon color="currentColor" />}>
<Heading>{t("Zapier")}</Heading>
<HelpText>
<Trans>
Zapier is a platform that allows Outline to easily integrate with
thousands of other business tools. Head over to Zapier to setup a
"Zap" and start programmatically interacting with Outline.'
</Trans>
</HelpText>
<p>
<Button
onClick={() =>
(window.location.href = "https://zapier.com/apps/outline")
}
>
{t("Open Zapier")}
</Button>
</p>
</Scene>
);
}
export default Zapier;