/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { ADMIN_URL as adminUrl } from '@woocommerce/wc-admin-settings'; import { Stepper, Link } from '@woocommerce/components'; import { Button } from '@wordpress/components'; import interpolateComponents from 'interpolate-components'; export const PayUIndia = ( { installStep, markConfigured } ) => { return ( { markConfigured( 'payubiz' ); } } /> ), }, ] } /> ); }; const PayUCredentialsStep = ( { onFinish } ) => { const settingsLink = ( ); const accountLink = ( ); const configureText = interpolateComponents( { mixedString: __( 'PayU can be configured under your {{settingsLink}}store settings.{{/settingsLink}} Create your PayU account {{accountLink}}here.{{/accountLink}}', 'woocommerce-admin' ), components: { accountLink, settingsLink, }, } ); return ( <>

{ configureText }

); };