import { BaseBox, MapCustom, StackCustom, TextCustom } from "@/components"; export default function Portofolio_BusinessLocation({ data, imageId, setOpenDrawerLocation, }: { data: any; imageId?: string; setOpenDrawerLocation: (value: boolean) => void; }) { return ( <> Lokasi Bisnis {!data ? ( Lokasi bisnis belum ditambahkan ) : ( { setOpenDrawerLocation(true); }} /> )} ); }