mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-10 01:43:43 +00:00
19 lines
311 B
TypeScript
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);
|