import type { TextFieldLabelServerComponent } from 'payload' import React from 'react' export const CustomServerLabel: TextFieldLabelServerComponent = (props) => { return (
{`Label: the max length of this field is: ${props?.field?.maxLength}`}
) }