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