10 lines
244 B
Plaintext
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></>
|
|
} |