mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-20 08:16:52 +08:00
11 lines
181 B
TypeScript
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)
|