"use client"; import React from "react"; import { Map } from "lucide-react"; interface MapPreviewComponentProps { component: { config?: { dataSource?: { tableName?: string; }; }; }; } export default function MapPreviewComponent({ component }: MapPreviewComponentProps) { const tableName = component.config?.dataSource?.tableName; return (

지도 컴포넌트

{tableName && (

테이블: {tableName}

)}
); }