Files
payload/test/fields/collections/Array/LabelComponent.tsx
2023-09-01 14:45:41 -04:00

10 lines
318 B
TypeScript

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