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