1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00

Convert Table to TypeScript

This commit is contained in:
Mark McDowall
2025-01-06 16:48:33 -08:00
parent d8a147d234
commit 0b58278e15
57 changed files with 959 additions and 1239 deletions
@@ -0,0 +1,15 @@
import React from 'react';
interface TableHeaderProps {
children?: React.ReactNode;
}
function TableHeader({ children }: TableHeaderProps) {
return (
<thead>
<tr>{children}</tr>
</thead>
);
}
export default TableHeader;