import { PropsWithChildren } from 'react'; type TableHeadProps = PropsWithChildren; export const TableHead = ({ children }: TableHeadProps) => ( {children} );