Files
react-editor-shopify-nextjs/components/shopify/product-details.editor.tsx
2026-06-06 14:21:55 -04:00

15 lines
567 B
TypeScript

import { ComponentConfig } from "@reacteditor/core";
import { Package } from "lucide-react";
import { ProductDetailsView, type ProductDetailsProps } from "@/components/shopify/product-details";
const productDetailsEditor: ComponentConfig<ProductDetailsProps> = {
label: "Product details",
icon: <Package size={16} />,
category: "commerce",
defaultProps: { product: null },
fields: { product: { label: "Product", type: "shopifyProduct" } as any },
render: (props) => <ProductDetailsView {...props} />,
};
export default productDetailsEditor;