10 lines
238 B
TypeScript
10 lines
238 B
TypeScript
'use client'
|
|
|
|
import type { TextFieldServerComponent } from 'payload'
|
|
|
|
import React from 'react'
|
|
|
|
export const CustomField: TextFieldServerComponent = ({ schemaPath }) => {
|
|
return <div id="custom-field-schema-path">{schemaPath}</div>
|
|
}
|