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