2025-11-14 14:43:53 +09:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import { ComponentRegistry } from "../../ComponentRegistry";
|
|
|
|
|
import { ModalRepeaterTableDefinition } from "./index";
|
|
|
|
|
|
2025-11-17 16:48:42 +09:00
|
|
|
// 파일 로드 시 즉시 등록
|
|
|
|
|
ComponentRegistry.registerComponent(ModalRepeaterTableDefinition);
|
|
|
|
|
console.log("✅ ModalRepeaterTable 컴포넌트 등록 완료");
|
2025-11-14 14:43:53 +09:00
|
|
|
|