# fix - Notifikasi report posting _ Realtime notifikasi ## Issuee: Cooming soon saat report komentar langsung menuju tablenya
20 lines
377 B
TypeScript
20 lines
377 B
TypeScript
"use client";
|
|
|
|
import { Center, Text } from "@mantine/core";
|
|
|
|
export default function ComponentAdminGlobal_IsEmptyData({
|
|
text,
|
|
marginTop,
|
|
}: {
|
|
text?: string;
|
|
marginTop?: number;
|
|
}) {
|
|
return (
|
|
<>
|
|
<Center h={"100%"} mt={marginTop ? marginTop : "xl"}>
|
|
<Text c={"gray"} fw={"bold"}>{text ? text : "Tidak Ada Data"}</Text>
|
|
</Center>
|
|
</>
|
|
);
|
|
}
|