package main
// techSpecComponent renders the tech-spec table with right-aligned mono numerals
// and hairline row rules.
templ techSpecComponent(data TechSpecData) {
{ data.Caption }
if len(data.Rows) == 0 {
} else {
for i, row := range data.Rows {
@techSpecRow(row, i == len(data.Rows)-1)
}
}
No spec rows yet.
--