2026-01-16 15:12:22 +09:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import { ComponentRegistry } from "@/lib/registry/ComponentRegistry";
|
|
|
|
|
import { RepeatContainerDefinition } from "./index";
|
|
|
|
|
|
|
|
|
|
// 컴포넌트 자동 등록
|
|
|
|
|
if (typeof window !== "undefined") {
|
|
|
|
|
ComponentRegistry.registerComponent(RepeatContainerDefinition);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export {};
|
2026-03-11 18:51:31 +09:00
|
|
|
|