- [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>
8 lines
147 B
TypeScript
8 lines
147 B
TypeScript
'use client'
|
|
|
|
import React from 'react'
|
|
|
|
export const BeforeInput: React.FC = () => {
|
|
return <div className="before-input">#before-input</div>
|
|
}
|