import { BadgeCustom, CenterCustom, Grid, StackCustom, TextCustom } from "@/components"; import AdminBasicBox from "@/components/_ShareComponent/Admin/AdminBasicBox"; import { router } from "expo-router"; interface Bidang { item: { id: string; name: string; slug: string; active: boolean; createdAt: string; updatedAt: string; }; } export default function AdminAppInformation_BusinessFieldSection({ item, }: { item: any; }) { return ( <> router.push(`/admin/app-information/business-field/${item.item.id}`) } style={{ marginHorizontal: 10, marginVertical: 5 }} > {item?.item?.name || "-"} {item?.item?.active ? ( Aktif ) : ( Tidak Aktif )} ); }