Files
Assemblr/src/screens/ProfileScreen/ProfileScreen.tsx
2023-10-12 23:45:46 +03:00

15 lines
386 B
TypeScript

import {Button, Text, View} from "react-native";
import {useAppDispatch} from "../../redux/store";
import {logoutUser, useGetPokemonByNameQuery} from "../../features/auth/authSlice";
import * as process from "process";
function ProfileScreen() {
return (
<View>
<Text style={{fontSize: 36}}>Profile</Text>
</View>
)
}
export default ProfileScreen;