summaryrefslogtreecommitdiff
path: root/view/timer.templ
blob: 18f0a7b02d0b088721ccb495c92cfbffa3acef11 (plain)
1
2
3
4
5
6
7
8
9
10
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>
}