"use client"; /** * 세금계산서 목록 컴포넌트 (레지스트리용 래퍼) */ import React from "react"; import { TaxInvoiceList } from "@/components/tax-invoice"; import { TaxInvoiceListConfig } from "./types"; interface TaxInvoiceListComponentProps { config?: TaxInvoiceListConfig; componentId?: string; isEditMode?: boolean; } export function TaxInvoiceListComponent({ config, componentId, isEditMode, }: TaxInvoiceListComponentProps) { // 편집 모드에서는 플레이스홀더 표시 if (isEditMode) { return (
📄

세금계산서 목록

{config?.title || "세금계산서 관리"}

); } return (
); } // 래퍼 컴포넌트 (레지스트리 호환용) export function TaxInvoiceListWrapper(props: any) { return ; }