dify/web/app/(shareLayout)/completion/[token]/page.tsx
2024-06-24 12:29:14 +08:00

11 lines
181 B
TypeScript

import React from 'react'
import Main from '@/app/components/share/text-generation'
const Completion = () => {
return (
<Main />
)
}
export default React.memo(Completion)