React Code:
import { socket } from './SocketConnection'
export function socket() {
socket.emit('getip','1')
socket.on('ipaddr', (message)=>{
return message
}
)
}
I want to get the response from the above socket code and have to use in multiple components i don't know how to proceed this. the above code is my try when i try to import it in other component it didn't work. i want to use the socket response in other components kindly guide me