Received request from Uniform to render a component with the public ID: eventFolder
.
<UniformComposition />
does not have eventFolder
mapped to a React component yet.
import { ComponentProps, UniformSlot, } from '@uniformdev/canvas-next-rsc/component'; type EventFolderParameters = { noIndex: unknown noFollow: unknown pageTitle: string displayName: string canonicalUrl: string showonMobile: unknown breadcrumbtitle: string metaDescription: string showonbreadcrumb: unknown }; type EventFolderSlots = ; type EventFolderProps = ComponentProps<EventFolderParameters, EventFolderSlots>; export const EventFolderComponent = (props: EventFolderProps) => { return ( <div> <div> </div> </div> ); }; Add this component mapping to your resolveComponent function on UniformComposition.
<UniformComposition />
is defined, for example import "../../components/EventFolder.tsx"
Need more help? Check out the documentation.