/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { createInterpolateElement, useState } from '@wordpress/element'; import { Button } from '@wordpress/components'; import { PLUGINS_STORE_NAME } from '@woocommerce/data'; import { useDispatch } from '@wordpress/data'; import { recordEvent } from '@woocommerce/tracks'; /** * Internal dependencies */ import unconnectedImage from './subscriptions-empty-state-unconnected.svg'; import './style.scss'; const TOS = () => (

{ createInterpolateElement( __( 'By clicking "Get started", you agree to the Terms of Service', 'woocommerce-payments' ), { a: ( // eslint-disable-next-line jsx-a11y/anchor-has-content ), } ) }

); const GetStartedButton = () => { const [ isGettingStarted, setIsGettingStarted ] = useState( false ); const { installAndActivatePlugins } = useDispatch( PLUGINS_STORE_NAME ); return (
); }; const SubscriptionsPage = () => (

{ __( 'Track recurring revenue and manage active subscriptions directly from your store’s dashboard — powered by WooCommerce Payments.', 'woocommerce-payments' ) }

); export default SubscriptionsPage;