"use client"; import AppComponentGlobal_LayoutTamplate from "@/app_modules/_global/component_layout_tamplate"; import ComponentColab_HeaderTamplate from "../../component/header_tamplate"; import { Center, Stack } from "@mantine/core"; import { MODEL_COLLABORATION_NOTIFIKSI } from "../../model/interface"; import ComponentColab_NotedBox from "../../component/noted_box"; import ComponentColab_DetailData from "../../component/detail/detail_data"; export default function Colab_DetailNotifikasi({ data, }: { data: MODEL_COLLABORATION_NOTIFIKSI; }) { return ( <> } > ); } function DetailNotif({ data }: { data?: MODEL_COLLABORATION_NOTIFIKSI }) { return ( <> ); }