Fix tampilan admin dan notifikasi to admin
# fix - Notifikasi report posting _ Realtime notifikasi ## Issuee: Cooming soon saat report komentar langsung menuju tablenya
This commit is contained in:
19
src/app_modules/admin/component_global/is_empty_data.tsx
Normal file
19
src/app_modules/admin/component_global/is_empty_data.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
"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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user