Received request from Uniform to render a component with the public ID: appCoupon
.
<UniformComposition />
does not have appCoupon
mapped to a React component yet.
import { ComponentProps, UniformSlot, } from '@uniformdev/canvas-next-rsc/component'; type AppCouponParameters = { }; type AppCouponSlots = ; type AppCouponProps = ComponentProps<AppCouponParameters, AppCouponSlots>; export const AppCouponComponent = (props: AppCouponProps) => { return ( <div> <div> </div> </div> ); }; Add this component mapping to your resolveComponent function on UniformComposition.
<UniformComposition />
is defined, for example import "../../components/AppCoupon.tsx"
Need more help? Check out the documentation.