import type { RowLabelComponent } from 'payload/types' import React from 'react' export const ArrayRowLabel: RowLabelComponent = ({ data }) => { return (
{data.title || 'Untitled'}
) }