import React from 'react' import type { RowLabelComponent } from '../../../../packages/payload/src/admin/forms/RowLabel.js' export const ArrayRowLabel: RowLabelComponent = ({ data }) => { return (
{data.title || 'Untitled'}
) }