import { useTranslation } from 'react-i18next'; import close from '../assets/cross.svg'; import rightArrow from '../assets/arrow-full-right.svg'; import bg from '../assets/notification-bg.jpg'; interface NotificationProps { notificationText: string; notificationLink: string; handleCloseNotification: () => void; } export default function Notification({ notificationText, notificationLink, handleCloseNotification, }: NotificationProps) { const { t } = useTranslation(); return (

{notificationText}

); }