From 6ff7c459e3d08ebdf6da6973ebe0410b5cab9c0a Mon Sep 17 00:00:00 2001 From: Alberto-Duarte Date: Thu, 11 May 2023 11:40:35 +0100 Subject: first commit --- screens/profile.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 screens/profile.js (limited to 'screens/profile.js') diff --git a/screens/profile.js b/screens/profile.js new file mode 100644 index 0000000..0bd1cd9 --- /dev/null +++ b/screens/profile.js @@ -0,0 +1,21 @@ +import React, { Component } from 'react'; +import { View, Text , Pressable} from 'react-native'; +import tw from 'twrnc' +import auth from '@react-native-firebase/auth'; + + +const Profile = () => { + return ( + + auth().signOut()} + > + Logout + + + ); +} + + +export default Profile; -- cgit v1.2.3-54-g00ecf