import { Button, Text } from "react-native-paper" import { View } from "react-native" import { About } from "@/presentation/react-native/components/About" import { useAuthentication } from "@/presentation/react/contexts/Authentication" const SettingsPage: React.FC = () => { const { logout, authenticationPresenter, user } = useAuthentication() const handleLogout = async (): Promise => { await authenticationPresenter.logout() } return ( Logout } footer={ Currenty logged in as {user?.displayName} } /> ) } export default SettingsPage