import { View, Text, Pressable, Image, StyleSheet } from 'react-native' import React from 'react' import { Ionicons } from '@expo/vector-icons'; import { useNavigation } from '@react-navigation/native'; const Inbox = () => { const navigation = useNavigation(); return ( navigation.goBack()} > Inbox No messages right now ) } export default Inbox