mirror of
https://github.com/langgenius/dify.git
synced 2026-05-06 02:18:08 +08:00
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)
|