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