The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/client/components/GenericTable/V2/GenericTableHeader.tsx

10 lines
296 B

import { Table } from '@rocket.chat/fuselage';
import React, { FC } from 'react';
import { GenericTableRow } from './GenericTableRow';
export const GenericTableHeader: FC = ({ children, ...props }) => (
<Table.Head {...props}>
<GenericTableRow>{children}</GenericTableRow>
</Table.Head>
);