'use client' import type { PayloadClientReactComponent, RowLabelComponent } from 'payload' import { useRowLabel } from '@payloadcms/ui' import React from 'react' export const ArrayRowLabel: PayloadClientReactComponent = () => { const { data } = useRowLabel<{ title: string }>() return (
{data.title || 'Untitled'}
) }