14 lines
460 B
TypeScript
14 lines
460 B
TypeScript
|
|
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 (
|
||
|
|
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
|
||
|
|
<Text>{t('searchingOppenent')}</Text>
|
||
|
|
</View>
|
||
|
|
);
|
||
|
|
}
|