import React, {useEffect} from 'react'; import {Col, Progress} from "antd" import socket from "../util/socket"; const NextShot = () => { useEffect(() => { socket.on("SENDING_NEW_TIME", (data: string) => { }); return () => { socket.off("SENDING_NEW_TIME"); } }); return (

Tijd tot volgende shot:

); }; export default NextShot;