"use client"; import { Center, Text } from "@mantine/core"; export default function ComponentAdminGlobal_IsEmptyData({ text, marginTop, }: { text?: string; marginTop?: number; }) { return ( <>
{text ? text : "Tidak Ada Data"}
); }