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