|
"use client";
|
|
|
|
import { ComponentRegistry } from "@/lib/registry/ComponentRegistry";
|
|
import { V2AggregationWidgetDefinition } from "./index";
|
|
|
|
// 컴포넌트 자동 등록
|
|
if (typeof window !== "undefined") {
|
|
ComponentRegistry.registerComponent(V2AggregationWidgetDefinition);
|
|
}
|
|
|
|
export {};
|
|
|