mirror of
https://github.com/langgenius/dify.git
synced 2026-07-31 09:19:29 +08:00
Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: GPT 5.4 <codex@openai.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: -LAN- <laipz8200@outlook.com>
14 lines
275 B
TypeScript
14 lines
275 B
TypeScript
'use client'
|
|
import * as React from 'react'
|
|
import FormContent from './form'
|
|
|
|
const FormPage = () => {
|
|
return (
|
|
<div className="h-full min-w-75 bg-chatbot-bg pb-[env(safe-area-inset-bottom)]">
|
|
<FormContent />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(FormPage)
|