Received request from Uniform to render a component with the public ID: shopCategoryLandingPage
.
<UniformComposition />
does not have shopCategoryLandingPage
mapped to a React component yet.
import { ComponentProps, UniformSlot, } from '@uniformdev/canvas-next-rsc/component'; type ShopCategoryLandingPageParameters = { pageTitle: string openGraphImage: unknown metaDescription: string shopCategoriesSubCategoriesSelection: unknown }; type ShopCategoryLandingPageSlots = ; type ShopCategoryLandingPageProps = ComponentProps<ShopCategoryLandingPageParameters, ShopCategoryLandingPageSlots>; export const ShopCategoryLandingPageComponent = (props: ShopCategoryLandingPageProps) => { return ( <div> <div> </div> </div> ); }; Add this component mapping to your resolveComponent function on UniformComposition.
<UniformComposition />
is defined, for example import "../../components/ShopCategoryLandingPage.tsx"
Need more help? Check out the documentation.