import React from 'react' import { SafeAreaView, View, Text, Pressable } from 'react-native' import { useTranslation } from 'react-i18next' import { Navigation } from 'react-native-navigation' import Style from './Subscribe.style' // Language const base = 'subscribe_screen' // Interfaces type Props = ScreenProps const Subscribe = ({ componentId = '' }: Partial): JSX.Element => { const { t } = useTranslation() // Methods const _onNavigateBack = () => { Navigation.pop(componentId) } return ( {t(`${base}.title`)} {t(`${base}.description`)} ) } export default Subscribe