import { io } from 'socket.io-client';
const URL = 'http://localhost:3000/';
//const URL = 'https://chat.buyercall.com:8083/';
const socket = io(URL, { autoConnect: false, transports: ['websocket'] });
console.log('Socket Hi');
socket.onAny((event, ...args) => {
console.log(event, args);
});
export default socket;