mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-06 07:53:54 +00:00
dda92ba3a8
* refactor: implement import lint
18 lines
352 B
React
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,
|
|
};
|