11 lines
181 B
Plaintext
11 lines
181 B
Plaintext
package view
|
|
|
|
import (
|
|
"stevenlr.com/timer/model"
|
|
)
|
|
|
|
templ TimerView(timer model.Timer) {
|
|
<h1>This is timer { timer.Name }</h1>
|
|
<a href="/">Back to list</a>
|
|
}
|