mancala/mobile/src/screens/GameScreen.tsx

14 lines
383 B
TypeScript
Raw Normal View History

2024-03-24 14:23:08 +03:00
import * as React from 'react';
import { View, Button } from 'react-native';
import { useTranslation } from 'react-i18next';
import { GameScreenProps } from '../types';
export function GameScreen({ navigation, route }: GameScreenProps) {
const { t } = useTranslation();
return (
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
</View>
);
}