leaky-ships/frontend/src/components/SocketIO.tsx
2022-10-26 00:15:33 +02:00

11 lines
No EOL
280 B
TypeScript

import { io } from 'socket.io-client';
function SocketIO() {
// const socket = io("wss://server-domain.com");
const socket = io(); // The server URL will be deduced from the window.location object.
return (
<div>SocketIO</div>
)
}
export default SocketIO