import { StatusBar } from 'expo-status-bar' import {View} from 'react-native' import React from 'react'; import stylesScreen from './style/screens.style'; import { TopBar } from '../components/TopBar'; import { BotBar } from '../components/BotBar'; import { FlatList } from 'react-native-gesture-handler'; import { ConversationComponent } from '../components/ConversationComponent'; import { useSelector } from 'react-redux'; import { RootState } from '../redux/store'; function Chat(props: { navigation: any; }) { const { navigation } = props const currentUser = useSelector((state: RootState) => state.currentUser.value[0]); return ( } /> ); } export default Chat