import { Panel } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; import { useAIConsentStore } from '@shared/state/ai-consent'; export const ConsentSidebar = () => { const { consentTermsHTML, setUserGaveConsent } = useAIConsentStore(); return (

{__('Terms of Use', 'extendify-local')}

); };