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 './ForgotPassword.style' // Language const base = 'forgot_password_screen' // Interfaces type Props = ScreenProps const ForgotPassword = ({ componentId = '' }: Partial): JSX.Element => { const { t } = useTranslation() // Methods const _onNavigateBack = () => { Navigation.pop(componentId) } console.log(componentId) return ( {t(`${base}.title`)} {t(`${base}.description`)} ) } export default ForgotPassword