import React from "react"
import { View ,Text,StyleSheet} from "react-native"

export default class GamePage extends React.Component{
    render(){
        return (
            <View style={styles.container}>
                <Text>GamePage</Text>
            </View>
        )
    }
}
const styles = StyleSheet.create({
    container:{
        flex:1,
        justifyContent:"center",
        alignItems:"center",
        backgroundColor:"#ff0"
    }
})