Files
payloadcms/test/fields/collections/Array/LabelComponent.tsx
2024-03-08 14:42:24 -05:00

10 lines
304 B
TypeScript

import React from 'react'
import type { RowLabelComponent } from '../../../../packages/payload/src/admin/forms/RowLabel.js'
export const ArrayRowLabel: RowLabelComponent = ({ data }) => {
return (
<div style={{ color: 'coral', textTransform: 'uppercase' }}>{data.title || 'Untitled'}</div>
)
}