Files
golias/components/room.html
2025-05-04 11:32:39 +03:00

13 lines
262 B
HTML

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