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