package components type ContentTable struct { ID string AllTH []ContentTableTH AllTD [][]ContentTableTD } type ContentTableTH struct { ID string Value string } type ContentTableTD struct { ID string Value string }