import * as React from 'react'; import { View, Text, Button } from 'react-native'; import { useTranslation } from 'react-i18next'; import { LobyScreenProps } from '../types'; export default function LobyScreen({ navigation, route }: LobyScreenProps) { const { t } = useTranslation(); return ( {t('searchingOppenent')} ); }