14 lines
		
	
	
		
			302 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			302 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import {Button, Text, View} from "react-native";
 | 
						|
import {useAppDispatch} from "../../redux/store";
 | 
						|
import * as process from "process";
 | 
						|
 | 
						|
function ProfileScreen() {
 | 
						|
 | 
						|
    return (
 | 
						|
        <View>
 | 
						|
            <Text style={{fontSize: 36}}>Profile</Text>
 | 
						|
        </View>
 | 
						|
    )
 | 
						|
}
 | 
						|
 | 
						|
export default ProfileScreen; |