import * as React from 'react'; import { View, Button, Text } from 'react-native'; import { useTranslation } from 'react-i18next'; import { GameScreenProps } from '../types'; export function GameScreen({ navigation, route }: GameScreenProps) { const { context, gameId } = route.params; const { t } = useTranslation(); return ( {gameId} ); }