parent
7f0696c574
commit
66cead6b48
@ -1,11 +1,11 @@
|
||||
import React, { ComponentPropsWithoutRef } from 'react';
|
||||
import styles from './TableRowCell.css';
|
||||
|
||||
export interface TableRowCellprops extends ComponentPropsWithoutRef<'td'> {}
|
||||
export interface TableRowCellProps extends ComponentPropsWithoutRef<'td'> {}
|
||||
|
||||
export default function TableRowCell({
|
||||
className = styles.cell,
|
||||
...tdProps
|
||||
}: TableRowCellprops) {
|
||||
}: TableRowCellProps) {
|
||||
return <td className={className} {...tdProps} />;
|
||||
}
|
||||
|
Loading…
Reference in new issue