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