Files
AFFiNE-Mirror/packages/component/src/ui/table/TableBody.tsx
T
2023-03-15 11:58:43 -05:00

12 lines
325 B
TypeScript

import type { HTMLAttributes, PropsWithChildren } from 'react';
import { StyledTableBody } from './styles';
export const TableBody = ({
children,
...props
}: PropsWithChildren<HTMLAttributes<HTMLTableSectionElement>>) => {
return <StyledTableBody {...props}>{children}</StyledTableBody>;
};
export default TableBody;