Table
Table component display a table.
API
func Table(c *tgframe.Container, head []string, table [][]string)
cis Parent container.headis the head of table.bodyis the body of table.
Example
tgcomp.Table(p.Main, []string{"a", "b"}, [][]string{{"1", "2"}, {"3", "4"}})
