chore: change file name under ui dir

This commit is contained in:
QiShaoXuan
2022-12-28 17:31:01 +08:00
parent df30cc4861
commit 96383fc60d
29 changed files with 23 additions and 23 deletions
+14
View File
@@ -0,0 +1,14 @@
import { HTMLAttributes, PropsWithChildren } from 'react';
import { TableCellProps } from './interface';
import { StyledTableCell } from './styles';
export const TableCell = ({
children,
...props
}: PropsWithChildren<
TableCellProps & HTMLAttributes<HTMLTableCellElement>
>) => {
return <StyledTableCell {...props}>{children}</StyledTableCell>;
};
export default TableCell;