From 5bb366026d5ca31ea0f3d1d05eabda2e65415114 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Sat, 6 Dec 2025 16:53:54 +0700 Subject: [PATCH] feat(FE-321): create ClosingGeneralInformationTable component --- .../ClosingGeneralInformationTable.tsx | 100 ++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 src/components/pages/closing/ClosingGeneralInformationTable.tsx diff --git a/src/components/pages/closing/ClosingGeneralInformationTable.tsx b/src/components/pages/closing/ClosingGeneralInformationTable.tsx new file mode 100644 index 00000000..af21497a --- /dev/null +++ b/src/components/pages/closing/ClosingGeneralInformationTable.tsx @@ -0,0 +1,100 @@ +import { ClosingGeneralInformation } from '@/types/api/closing'; + +interface ClosingGeneralInformationProps { + initialValue?: ClosingGeneralInformation; +} + +const ClosingGeneralInformationTable = ({ + initialValue, +}: ClosingGeneralInformationProps) => { + return ( +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Lokasi:{initialValue?.location_name}
Periode:{initialValue?.period}
Kategori:{initialValue?.project_category}
Populasi:{initialValue?.population} Ekor
Jenis Project:{initialValue?.project_type}
Kandang Aktif:{initialValue?.active_house_count} Kandang
Status Pembayaran Penjualan:{initialValue?.sales_payment_status}
Status Project:{initialValue?.project_status}
Status Closing:{initialValue?.closing_status}
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Kandang Aktif:{initialValue?.active_house_count} Kandang
Status Pembayaran Penjualan:{initialValue?.sales_payment_status}
Status Project:{initialValue?.project_status}
Status Closing:{initialValue?.closing_status}
+
+
+
+
+ ); +}; + +export default ClosingGeneralInformationTable;