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.
outline/app/scenes/Settings/Zapier.js

42 lines
1.2 KiB
JavaScript
Raw Normal View History

2018-09-30 15:51:14 +00:00
// @flow
import * as React from "react";
import Button from "components/Button";
import CenteredContent from "components/CenteredContent";
import HelpText from "components/HelpText";
import PageTitle from "components/PageTitle";
2018-09-30 15:51:14 +00:00
class Zapier extends React.Component<*> {
goToZapier = () => {
window.open(
"https://zapier.com/platform/public-invite/5927/a0b2747dbb017723b55fc54f4f0cdcae/"
);
};
2018-09-30 15:51:14 +00:00
render() {
return (
<CenteredContent>
<PageTitle title="Zapier" />
<h1>Zapier</h1>
<HelpText>
There is now an Outline app on{" "}
<a
href="https://zapier.com"
rel="noopener noreferrer"
target="_blank"
>
Zapier
</a>{" "}
to allow easy integration with hundreds of other business services. It
is currently in early access, to use the integration and hook up to
your wiki simply accept the public invite below. All configuration is
done within Zapier itself.
</HelpText>
<p>
<Button onClick={this.goToZapier}>Zapier Public Invite</Button>
</p>
2018-09-30 15:51:14 +00:00
</CenteredContent>
);
}
}
export default Zapier;