dify/web/app/(shareLayout)/completion/[token]/page.tsx

11 lines
181 B
TypeScript
Raw Normal View History

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