Received request from Uniform to render a component with the public ID: partnerOfferDeal.
<UniformComposition /> does not have partnerOfferDeal mapped to a React component yet.
import {
ComponentProps,
UniformSlot,
} from '@uniformdev/canvas-next-rsc/component';
type PartnerOfferDealParameters = {
title: string
endDate: unknown
offerId: string
quality: unknown
dealType: unknown
quantity: unknown
pageTitle: string
startDate: unknown
tileImage: unknown
conditions: string
datePhrase: string
largeImage: unknown
outOfStock: unknown
staffOffer: unknown
description: string
displayName: string
howToProfit: unknown
mobileImage: unknown
partnerLogo: unknown
partnerName: string
tabletImage: unknown
backgroundImage: unknown
breadcrumbtitle: string
conditionsofUse: unknown
metaDescription: string
durationOfValidity: unknown
};
type PartnerOfferDealSlots = ;
type PartnerOfferDealProps = ComponentProps<PartnerOfferDealParameters, PartnerOfferDealSlots>;
export const PartnerOfferDealComponent = (props: PartnerOfferDealProps) => {
return (
<div>
<div>
</div>
</div>
);
};
Add this component mapping to your resolveComponent function on UniformComposition.<UniformComposition /> is defined, for example import "../../components/PartnerOfferDeal.tsx"
Need more help? Check out the documentation.