Files
ontime/apps/client/src/features/cuesheet/cuesheet-table-elements/BlockRow.tsx
T
2023-09-14 21:06:48 +02:00

19 lines
311 B
TypeScript

import { memo } from 'react';
import style from '../Cuesheet.module.scss';
interface BlockRowProps {
title: string;
}
function BlockRow(props: BlockRowProps) {
const { title } = props;
return (
<tr className={style.blockRow}>
<td>{title}</td>
</tr>
);
}
export default memo(BlockRow);