import type { PropsWithChildren } from 'react' export function TableHeader({ children }: PropsWithChildren): JSX.Element { return (
{children}
) }