2025-11-28 11:48:46 +09:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import { ComponentRegistry } from "@/lib/registry/ComponentRegistry";
|
|
|
|
|
import { RepeatScreenModalDefinition } from "./index";
|
|
|
|
|
|
|
|
|
|
// 컴포넌트 자동 등록
|
|
|
|
|
if (typeof window !== "undefined") {
|
|
|
|
|
ComponentRegistry.registerComponent(RepeatScreenModalDefinition);
|
2026-01-06 13:08:33 +09:00
|
|
|
// console.log("✅ RepeatScreenModal 컴포넌트 등록 완료");
|
2025-11-28 11:48:46 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export {};
|
|
|
|
|
|