import { ArrowRightOutlined } from '@ant-design/icons';
import { Button } from 'antd';
import React from 'react';
import { useTranslation } from 'react-i18next';
function InitORCard({ onOpenModal }: { onOpenModal: () => void }) {
const { t } = useTranslation();
return (
{t('Discover the full potential of OpenReplay!')}
{t(
'Empower your product team with essential tools like Session Replay, Product Analytics, Co-Browsing, and more.',
)}
}
iconPosition="end"
onClick={onOpenModal}
>
{t('Setup OpenReplay Tracker')}
);
}
export default InitORCard;