Chat Application
import ‘react-native-get-random-values’; import AsyncStorage from ‘@react-native-async-storage/async-storage’; import Echo from ‘laravel-echo’; import Pusher from ‘pusher-js/react-native’; let echoInstance = null; export const initEcho = async () => { // ✅ async function if (echoInstance) return echoInstance; try { const userData = await AsyncStorage.getItem(‘userdata’); if (!userData) { console.log(‘User data not found’); return null; } const tokenData = JSON.parse(userData); …


