Lightweight websocket client for react SPAs based on typescript, sockJS & stompJS
import * as React from 'react';
import WebSocketClient from 'react-stompjs-client';
export const WebSocketWrapper = (props) => (
<WebSocketClient {...props}>
<div>Hello World</div>
</WebSocketClient>
);