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