import TextCustom from "../Text/TextCustom"; export default function NoDataText({ text }: { text?: string }) { return ( {text ? text : "Belum ada data"} ); }