import { Text } from "react-native" import { Button } from "react-native-paper" import { SafeAreaView } from "react-native-safe-area-context" import { useAuthentication } from "@/presentation/react/contexts/Authentication" const SettingsPage: React.FC = () => { const { logout, authenticationPresenter } = useAuthentication() const handleLogout = async (): Promise => { await authenticationPresenter.logout() } return ( Settings ) } export default SettingsPage