export function WSIndicator({ ws }: { ws?: WebSocket }) { return ws?.readyState === WebSocket.OPEN ? (
Connected
) : (
Disconnected
) }