const ws = useWS();
useEffect(() => {
const unsubscript = ws.privateSubscribe(
{
id: "executionreport",
event: "subscribe",
topic: "executionreport",
ts: Date.now()
},
{
onMessage: (data) => {
// do something
}
}
);
() => {
// Unsubscribes when the component unloads
unsubscribe();
};
}, []);