- [fix: join field shows loading when creating a document](9f7a2e7936) - [fix: join field descriptions](90e8cdb464) - [feat(ui): adds before & after inputs to join field](19d43329ad) --------- Co-authored-by: Patrik <patrik@payloadcms.com>
9 lines
286 B
TypeScript
9 lines
286 B
TypeScript
'use client'
|
|
import type { FieldDescriptionClientComponent } from 'payload'
|
|
|
|
import React from 'react'
|
|
|
|
export const FieldDescriptionComponent: FieldDescriptionClientComponent = ({ path }) => {
|
|
return <div className={`field-description-${path}`}>Component description: {path}</div>
|
|
}
|