first commit

This commit is contained in:
kyle
2025-03-05 19:45:02 +00:00
commit c65e4dc9c0
4 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<div>
{{#each actors}}
<div class="actor-health">
<strong>{{this.name}}</strong>
<progress value="{{this.current}}" max="{{this.max}}"></progress>
{{this.current}} / {{this.max}}
</div>
{{/each}}
</div>