()
| 7 | } |
| 8 | |
| 9 | const TableHeader: React.FC = () => ( |
| 10 | <thead> |
| 11 | <tr> |
| 12 | <th className="w-[180px] p-2 text-left font-semibold">Products</th> |
| 13 | <th className="p-2 text-left font-semibold">Description</th> |
| 14 | </tr> |
| 15 | </thead> |
| 16 | ); |
| 17 | |
| 18 | interface ProductName { |
| 19 | main: string; |
nothing calls this directly
no outgoing calls
no test coverage detected