{notificationIds.length > 0 ? (
<>
{notificationIds.map((notificationId) => (
))}
{notificationIds.length > 1 && (
)}
>
) : (
t('common.noUnreadNotifications')
)}
>
);
});
NotificationsStep.propTypes = {
onClose: PropTypes.func.isRequired,
};
export default NotificationsStep;