14 lines
383 B
TypeScript
14 lines
383 B
TypeScript
|
|
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>
|
||
|
|
);
|
||
|
|
}
|