Files
payload/test/fields/collections/Array/LabelComponent.tsx
2022-11-16 09:00:50 -05:00

8 lines
304 B
TypeScript

import React from 'react';
import { RowLabelComponent } from '../../../../src/admin/components/forms/RowLabel/types';
export const ArrayRowLabel: RowLabelComponent = (props) => {
const { data, fallback } = props;
return <div style={{ textTransform: 'uppercase' }}>{data.title || fallback}</div>;
};