import React from 'react'; import { View, Text, Linking } from 'react-native'; import I18n from '../../i18n'; import { useAppSelector } from '../../lib/hooks'; import { useTheme } from '../../theme'; import { CustomIcon } from '../CustomIcon'; import Button from '../Button'; import { styles } from './styles'; import { LEARN_MORE_URL } from './constants'; export const SupportedVersionsExpired = () => { const { colors } = useTheme(); const { name } = useAppSelector(state => state.server); return ( {I18n.t('Supported_versions_expired_title', { workspace_name: name })} {I18n.t('Supported_versions_expired_description')}