mirror of
https://github.com/langgenius/dify.git
synced 2026-02-03 01:21:18 +08:00
12 lines
191 B
TypeScript
12 lines
191 B
TypeScript
'use client'
|
|
|
|
import InputField from '@/app/components/base/prompt-editor/plugins/hitl-input-block/input-field'
|
|
|
|
const Page = () => {
|
|
return (
|
|
<InputField />
|
|
)
|
|
}
|
|
|
|
export default Page
|