Received request from Uniform to render a component with the public ID: dealDetail.
<UniformComposition /> does not have dealDetail mapped to a React component yet.
import {
ComponentProps,
UniformSlot,
} from '@uniformdev/canvas-next-rsc/component';
type DealDetailParameters = {
brand: unknown
title: string
endDate: unknown
offerId: string
quality: unknown
dealType: unknown
mondayId: string
typology: unknown
frequency: unknown
pageTitle: string
startDate: unknown
conditions: unknown
outOfStock: unknown
staffOffer: unknown
dealDisplay: unknown
description: string
displayName: string
howToRedeem: unknown
numberOfUses: unknown
estimatedValue: unknown
longDescription: unknown
metaDescription: string
durationOfValidity: unknown
endPublicationDate: unknown
startPublicationDate: unknown
};
type DealDetailSlots = ;
type DealDetailProps = ComponentProps<DealDetailParameters, DealDetailSlots>;
export const DealDetailComponent = (props: DealDetailProps) => {
return (
<div>
<div>
</div>
</div>
);
};
Add this component mapping to your resolveComponent function on UniformComposition.<UniformComposition /> is defined, for example import "../../components/DealDetail.tsx"
Need more help? Check out the documentation.