Files
invyone/frontend/lib/registry/components/domain/v2-shipping-plan-editor/ShippingPlanEditorRenderer.tsx
T

17 lines
562 B
TypeScript

"use client";
import React from "react";
import { AutoRegisteringComponentRenderer } from "../../../AutoRegisteringComponentRenderer";
import { V2ShippingPlanEditorDefinition } from "./index";
import { ShippingPlanEditorComponent } from "./ShippingPlanEditorComponent";
export class ShippingPlanEditorRenderer extends AutoRegisteringComponentRenderer {
static componentDefinition = V2ShippingPlanEditorDefinition;
render(): React.ReactElement {
return <ShippingPlanEditorComponent {...this.props} />;
}
}
ShippingPlanEditorRenderer.registerSelf();