Files
golias/components/room.html
2025-05-08 10:25:38 +03:00

17 lines
314 B
HTML

{{define "room"}}
<div id="hello-user">
<p>Hello {{.State.Username}}</p>
</div>
<hr />
<div class="flex justify-center">
<!-- Left Panel -->
{{template "teampew" "blue"}}
<!-- Right Panel -->
{{template "teampew" "red"}}
</div>
<hr />
<div id="cardtable">
{{template "cardtable" .Room}}
</div>
{{end}}