mancala/mobile/src/screens/LobyScreen.tsx

14 lines
460 B
TypeScript
Raw Normal View History

2024-03-24 14:23:08 +03:00
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>
);
}