'use client' import type { TextFieldDescriptionClientComponent } from 'payload' import React from 'react' export const CustomClientDescription: TextFieldDescriptionClientComponent = (props) => { return (
{`Description: the max length of this field is: ${props?.field?.maxLength}`}
) }