Files
AFFiNE-Mirror/packages/app/src/ui/table/table-row.tsx
T
2022-12-09 01:36:33 +08:00

12 lines
311 B
TypeScript

import { HTMLAttributes, PropsWithChildren } from 'react';
import { StyledTableRow } from './styles';
export const TableRow = ({
children,
...props
}: PropsWithChildren<HTMLAttributes<HTMLTableRowElement>>) => {
return <StyledTableRow {...props}>{children}</StyledTableRow>;
};
export default TableRow;