Skip to content

Instantly share code, notes, and snippets.

import { FC, ReactNode, useEffect, useState } from 'react';
import propTypes from 'prop-types';
import { over } from 'stompjs';
import SockJS from 'sockjs-client';
import { Button } from '@material-ui/core';
interface SocketHandlerProps {
children: ReactNode;
id:string
}