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