import { Button } from '@automattic/components'; import { useTranslate } from 'i18n-calypso'; import { FunctionComponent } from 'react'; import JetpackLogo from 'calypso/components/jetpack-logo'; import Main from 'calypso/components/main'; import './style.scss'; interface Props { authUrl: string; } const Connect: FunctionComponent< Props > = ( { authUrl } ) => { const translate = useTranslate(); return (

{ translate( 'Welcome to Jetpack. Authorize with your WordPress.com credentials to get started.' ) }

); }; export default Connect;