// Dependencies import React from 'react'; import { SafeAreaView } from 'react-native'; import { ThemeProvider } from 'react-native-elements'; import { ChatProvider } from 'react-native-chatting'; // Navigation import Navigation from '@app/navigation'; // Theme import theme from '@app/theme'; const CREDENTIALS = { appId: 2502, authKey: 't4k6hHxh9TpWYg3', authSecret: 'Pp745ntPs4TW4Wf', }; /** * App root component. * @returns The react root component. */ export function App(): React.ReactElement { return ( ); } export default App;