mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-25 23:58:15 +08:00
12 lines
238 B
TypeScript
12 lines
238 B
TypeScript
'use client'
|
|
|
|
import DemoForm from '../components/base/form/form-scenarios/demo'
|
|
|
|
export default function Page() {
|
|
return (
|
|
<div className='flex h-screen w-full items-center justify-center p-20'>
|
|
<DemoForm />
|
|
</div>
|
|
)
|
|
}
|