Files
ontime/client/src/features/table/tableRows/BlockRow.jsx
T
Carlos Valente dda92ba3a8 Refactor imports
* refactor: implement import lint
2022-06-11 23:17:16 +02:00

18 lines
352 B
React

import React from 'react';
import PropTypes from 'prop-types';
import style from '../Table.module.scss';
export default function BlockRow(props) {
const { row } = props;
return (
<tr {...row.getRowProps()}>
<td className={style.blockCell}>Delay Block</td>
</tr>
);
}
BlockRow.propTypes = {
row: PropTypes.object.isRequired,
};