RENDER(Request& context) { DValue card_props; card_props["title"] = "Component Example"; card_props["body"] = "This card body comes from context.props and is rendered through component()."; DValue named_props; named_props["title"] = "Named Render Example"; named_props["body"] = "This content is rendered through the COMPONENT:BODY(Request& context) entry point."; <>

UCE Test: Components

component_exists("components/card"):

component_resolve("components/card"):

Default Component

Named Component

}