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