(componentName string)
| 202 | } |
| 203 | |
| 204 | func MakeTableComponent[T any](componentName string) vdom.Component[TableProps[T]] { |
| 205 | return app.DefineComponent(componentName, genTableRenderFunc[T]) |
| 206 | } |
| 207 | |
| 208 | func genTableRenderFunc[T any](props TableProps[T]) any { |
| 209 | // State for sorting |
nothing calls this directly
no test coverage detected