diff --git a/frontend/src/Components/Table/Cells/TableRowCell.js b/frontend/src/Components/Table/Cells/TableRowCell.js deleted file mode 100644 index f66bbf3aa..000000000 --- a/frontend/src/Components/Table/Cells/TableRowCell.js +++ /dev/null @@ -1,37 +0,0 @@ -import PropTypes from 'prop-types'; -import React, { Component } from 'react'; -import styles from './TableRowCell.css'; - -class TableRowCell extends Component { - - // - // Render - - render() { - const { - className, - children, - ...otherProps - } = this.props; - - return ( - - {children} - - ); - } -} - -TableRowCell.propTypes = { - className: PropTypes.string.isRequired, - children: PropTypes.oneOfType([PropTypes.string, PropTypes.node]) -}; - -TableRowCell.defaultProps = { - className: styles.cell -}; - -export default TableRowCell; diff --git a/frontend/src/Components/Table/Cells/TableRowCell.tsx b/frontend/src/Components/Table/Cells/TableRowCell.tsx new file mode 100644 index 000000000..3b4b97c14 --- /dev/null +++ b/frontend/src/Components/Table/Cells/TableRowCell.tsx @@ -0,0 +1,11 @@ +import React, { ComponentPropsWithoutRef } from 'react'; +import styles from './TableRowCell.css'; + +export interface TableRowCellprops extends ComponentPropsWithoutRef<'td'> {} + +export default function TableRowCell({ + className = styles.cell, + ...tdProps +}: TableRowCellprops) { + return ; +}