mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-11 15:16:28 +08:00
12 lines
325 B
TypeScript
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;
|