Files
hipmi/src/app_modules/notif/index.tsx
Bagasbanuna02 5f430786b4 feat
Desc:
- Penambahan fitur notif realtime
Issue: Error socket
2023-10-17 17:21:48 +08:00

18 lines
470 B
TypeScript

"use client";
import { useShallowEffect } from "@mantine/hooks";
import io from "socket.io-client";
import { toast } from "react-toastify";
// const socket = io("https://io.wibudev.com");
export default function AppNotif() {
// useShallowEffect(() => {
// socket.on("io", (data) => {
// console.log(JSON.stringify(data))
// if (data && data.id === "hipmi") {
// toast.success(data.data);
// }
// });
// }, []);
return <></>;
}