import { Mapset } from "@/shared/types/mapset";
export default function MapsetOrganizationSection({
mapset,
}: {
mapset: Mapset;
}) {
return (
Informasi Organisasi
Nama Organisasi
{mapset.producer.name}
No. Telp Organisasi
{mapset.producer.phone_number}
Sistem Proyeksi
{mapset.projection_system.name}
Kategori
{mapset.category.name}
Klasifikasi
{mapset.classification.name}
Status Data
{mapset.data_status}
);
}