Files
payload/test/fields/collections/Array/LabelComponent.tsx
2024-03-19 00:59:56 -04:00

10 lines
261 B
TypeScript

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