1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package testdata
import tui "github.com/grindlemire/go-tui"
templ Header(title string) {
<div border={tui.BorderSingle} padding={1}>
<span>{title}</span>
</div>
}
templ Footer() {
<div padding={1}>
<span>Footer content</span>
</div>
}
|