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

UCE Test: Components

component_exists("components/card"):

component_resolve("components/card"):

Default Render

Named Render

}