mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-20 21:54:58 -04:00
16 lines
243 B
TypeScript
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;
|