master
export const TableHeader = ({ children }) => { return ( <thead className="bg-gray-50"> <tr>{children}</tr> </thead> ) }