2023-05-15 08:51:32 +08:00
|
|
|
import React from 'react'
|
|
|
|
|
import Main from '@/app/components/share/text-generation'
|
2025-07-17 10:52:10 +08:00
|
|
|
import AuthenticatedLayout from '../../components/authenticated-layout'
|
2023-05-15 08:51:32 +08:00
|
|
|
|
2024-06-24 12:29:14 +08:00
|
|
|
const Completion = () => {
|
2023-05-15 08:51:32 +08:00
|
|
|
return (
|
2025-07-17 10:52:10 +08:00
|
|
|
<AuthenticatedLayout>
|
|
|
|
|
<Main />
|
|
|
|
|
</AuthenticatedLayout>
|
2023-05-15 08:51:32 +08:00
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-24 12:29:14 +08:00
|
|
|
export default React.memo(Completion)
|