// @flow import * as React from 'react'; import CenteredContent from 'components/CenteredContent'; import PageTitle from 'components/PageTitle'; import HelpText from 'components/HelpText'; import Button from 'components/Button'; class Zapier extends React.Component<*> { goToZapier = () => { window.open( 'https://zapier.com/platform/public-invite/5927/a0b2747dbb017723b55fc54f4f0cdcae/' ); }; render() { return (

Zapier

There is now an Outline app on{' '} Zapier {' '} 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.

); } } export default Zapier;