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 ( ); }