add img and class to table template

This commit is contained in:
Zeni Kim 2025-03-27 12:19:18 -05:00
parent db3c510f9a
commit cc8c79fe3d

View file

@ -9,13 +9,13 @@ type ContentTable struct {
}
type ContentTableTH struct {
ID string
ValueType string // -> default string, href, badge, list, checkbox
Value string
ValueClass string
ID string
ValueType string // -> default string, href, badge, list, checkbox
Value string
}
type ContentTableTD struct {
ID string
Value interface{} // string or component struct according ValueType
ID string
Value interface{} // string or component struct according ValueType
ValueClass string
}