dify/web/app/(shareLayout)/environment/workflow/[token]/page.tsx
Wu Tianwei 550196e3b8
feat: app deployment v2 (#41444)
Co-authored-by: zhangx1n <zhangxin@dify.ai>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-09-04 02:01:35 +00:00

14 lines
345 B
TypeScript

import * as React from 'react'
import Main from '@/app/components/share/text-generation'
import AuthenticatedLayout from '../../../components/authenticated-layout'
const EnvironmentWorkflow = () => {
return (
<AuthenticatedLayout>
<Main isWorkflow />
</AuthenticatedLayout>
)
}
export default React.memo(EnvironmentWorkflow)