+
+
+ { LocalizeText('notifications.text.club_gift') }
+
+
+
+
+ { LocalizeText('notifications.button.later') }
+
+
+
+ );
+};
diff --git a/src/components/notification-center/views/bubble-layouts/NotificationDefaultBubbleView.tsx b/src/components/notification-center/views/bubble-layouts/NotificationDefaultBubbleView.tsx
index 91f0011..0a360cf 100644
--- a/src/components/notification-center/views/bubble-layouts/NotificationDefaultBubbleView.tsx
+++ b/src/components/notification-center/views/bubble-layouts/NotificationDefaultBubbleView.tsx
@@ -2,24 +2,25 @@ import { FC } from 'react';
import { NotificationBubbleItem, OpenUrl } from '../../../../api';
import { Flex, LayoutNotificationBubbleView, LayoutNotificationBubbleViewProps, Text } from '../../../../common';
-export interface NotificationDefaultBubbleViewProps extends LayoutNotificationBubbleViewProps
-{
- item: NotificationBubbleItem;
+export interface NotificationDefaultBubbleViewProps extends LayoutNotificationBubbleViewProps {
+ item: NotificationBubbleItem;
}
-export const NotificationDefaultBubbleView: FC