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

15 lines
316 B
TypeScript
Raw Normal View History

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'
2024-06-24 12:29:14 +08:00
const Workflow = () => {
return (
2025-07-17 10:52:10 +08:00
<AuthenticatedLayout>
<Main isWorkflow />
</AuthenticatedLayout>
)
}
2024-06-24 12:29:14 +08:00
export default React.memo(Workflow)