1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00
Files
Sonarr/frontend/src/Components/Table/TableHeader.tsx
T
2025-01-25 19:38:05 -08:00

16 lines
243 B
TypeScript

import React from 'react';
interface TableHeaderProps {
children?: React.ReactNode;
}
function TableHeader({ children }: TableHeaderProps) {
return (
<thead>
<tr>{children}</tr>
</thead>
);
}
export default TableHeader;