mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-18 15:26:56 +08:00
12 lines
189 B
TypeScript
12 lines
189 B
TypeScript
import React from 'react'
|
|
|
|
import Main from '@/app/components/share/text-generation'
|
|
|
|
const Workflow = () => {
|
|
return (
|
|
<Main isWorkflow />
|
|
)
|
|
}
|
|
|
|
export default React.memo(Workflow)
|