import { layerTypeLabel } from "@/shared/config/layer-type"; import { Mapset } from "@/shared/types/mapset"; export default function MapsetInfoSection({ mapset }: { mapset: Mapset }) { return (
Informasi Mapset
Nama Mapset
{mapset.name}
Deskripsi
{mapset.description}
Skala
{mapset.scale}
Sistem Proyeksi
{mapset.projection_system.name}
{mapset.layer_type && (
Tipe Layer
{layerTypeLabel[mapset.layer_type]}
)}
Kategori
{mapset.category.name}
Klasifikasi
{mapset.classification.name}
Status Data
{mapset.data_status}
); }