import { Bell, CheckCircle2, Clock, X } from "lucide-react" import useNotifications from "@/hooks/useNotifications"; import { useState } from "react"; import { useEffect } from "react"; interface TestNotificationProps { notificationTestId: number; } export default function TestNotification({ notificationTestId }: TestNotificationProps) { const { getNotificationTest, notificationTest } = useNotifications(); const checkNotificationTest = async () => { await getNotificationTest(notificationTestId); } useEffect(() => { checkNotificationTest(); }, [notificationTestId]); return (