import React from 'react'; import { View, Text, Button, StyleSheet } from 'react-native'; import { signOut } from 'firebase/auth'; import { auth } from '../config/firebase'; export default function AdminScreen({ navigation }: any) { const handleLogout = async () => { await signOut(auth); navigation.replace('Login'); }; return ( Admin Panel Csak adminok láthatják ezt a képernyőt