uce/site/tests/components/props_alias.uce
2026-04-28 12:10:07 +00:00

10 lines
244 B
Plaintext

COMPONENT(Request& props)
{
String title = props.props["title"].to_string();
String body = props.props["body"].to_string();
<><div class="panel panel-alias-check">
<strong>alias=<?= title ?></strong>
<p>body=<?= body ?></p>
</div></>
}