Files
ontime/apps/client/src/views/cuesheet/cuesheet-table-elements/BlockRow.tsx
T
2024-12-10 15:53:53 +01: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);