refactor: rename DTree to DValue

This commit is contained in:
udo
2026-06-12 11:05:52 +00:00
parent 941f5aea08
commit 7066da3cde
157 changed files with 1203 additions and 1074 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
RENDER(Request& context)
{
DTree card_props;
DValue card_props;
card_props["title"] = "Component Example";
card_props["body"] = "This card body comes from context.props and is rendered through component().";
DTree named_props;
DValue named_props;
named_props["title"] = "Named Render Example";
named_props["body"] = "This content is rendered through the COMPONENT:BODY(Request& context) entry point.";