import React from 'react'; const Integration = ({ integrations, rtl }) => { return (
{ rtl ? 'دفعة لمرة واحدة' : 'One-Time Payment' }

{ rtl ? 'متوافق مع' : 'Integration With' } { rtl ? 'التطبيقات الشعبية' : 'Popular Apps' }

{ rtl ? 'نوتيرو يتكامل مع التطبيقات الشعبية. تساعدك على التواصل والتعاون بسهولة' : 'Notero intergrate with popular apps. Help you easy to connect and collaboration' }

{ integrations.map((integration, index) => (
)) }
) } export default Integration