/** * External dependencies */ import { getRedirectUrl } from '@automattic/jetpack-components'; import { BaseControl, ExternalLink } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; /** * Internal dependencies */ import './style.scss'; function FeedbackControl() { const feedbackURL = getRedirectUrl( 'jetpack-ai-feedback' ); return (

{ __( 'Your feedback is valuable in our commitment to refine and improve this feature.', 'jetpack' ) }

{ __( 'Share your feedback', 'jetpack' ) }
); } export default FeedbackControl;