mirror of
https://github.com/langgenius/dify.git
synced 2026-04-08 17:27:19 +08:00
14 lines
308 B
TypeScript
14 lines
308 B
TypeScript
import React from 'react'
|
|
import Main from '@/app/components/share/text-generation'
|
|
import AuthenticatedLayout from '../../components/authenticated-layout'
|
|
|
|
const Completion = () => {
|
|
return (
|
|
<AuthenticatedLayout>
|
|
<Main />
|
|
</AuthenticatedLayout>
|
|
)
|
|
}
|
|
|
|
export default React.memo(Completion)
|