import type { BlockRowLabelServerComponent } from 'payload' const CustomBlockLabel: BlockRowLabelServerComponent = ({ rowLabel }) => { return
{`Custom Block Label: ${rowLabel}`}
} export default CustomBlockLabel