From 6be5750fe8b8a7c2ffe7ee84322a4e2a67bbea33 Mon Sep 17 00:00:00 2001 From: Ammar Abbas Date: Wed, 11 Jun 2025 17:53:19 +0300 Subject: [PATCH] docs: add missing export for CreateBundledProduct component (#12704) * docs: add missing export for CreateBundledProduct component This commit adds a missing `export` statement to the `CreateBundledProduct` component in the "Create Form Component" example. Without the `export`, readers copying the example wouldn't be able to use the component elsewhere in their project, which could be confusing. This ensures the example is complete and ready to use as-is. * updated to default export for CreateBundledProduct component instead --- .../app/recipes/bundled-products/examples/standard/page.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/www/apps/resources/app/recipes/bundled-products/examples/standard/page.mdx b/www/apps/resources/app/recipes/bundled-products/examples/standard/page.mdx index 8dc74980dc..39e3cd55ed 100644 --- a/www/apps/resources/app/recipes/bundled-products/examples/standard/page.mdx +++ b/www/apps/resources/app/recipes/bundled-products/examples/standard/page.mdx @@ -1277,6 +1277,7 @@ const CreateBundledProduct = () => { ]) // TODO fetch products } +export default CreateBundledProduct; ``` You create a `CreateBundledProduct` component that defines the following state variables: