mirror of
https://github.com/langgenius/dify.git
synced 2026-04-20 14:17:18 +08:00
The frontend and backend implementation for the human input node. Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com> Co-authored-by: zhsama <torvalds@linux.do>
14 lines
280 B
TypeScript
14 lines
280 B
TypeScript
'use client'
|
|
import * as React from 'react'
|
|
import FormContent from './form'
|
|
|
|
const FormPage = () => {
|
|
return (
|
|
<div className="h-full min-w-[300px] bg-chatbot-bg pb-[env(safe-area-inset-bottom)]">
|
|
<FormContent />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(FormPage)
|