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

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

); };