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