mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
13 lines
239 B
Plaintext
13 lines
239 B
Plaintext
<c-template
|
|
params="name,count,invokeBody">
|
|
|
|
<div class="nested">
|
|
<h1>
|
|
Hello $name! You have $count new messages.
|
|
</h1>
|
|
<p>
|
|
${invokeBody()}
|
|
</p>
|
|
</div>
|
|
|
|
</c-template> |