mirror of
https://github.com/langgenius/dify.git
synced 2026-05-04 09:28:04 +08:00
add route for workflow app
This commit is contained in:
13
web/app/(shareLayout)/workflow/[token]/page.tsx
Normal file
13
web/app/(shareLayout)/workflow/[token]/page.tsx
Normal file
@ -0,0 +1,13 @@
|
||||
import type { FC } from 'react'
|
||||
import React from 'react'
|
||||
|
||||
import type { IMainProps } from '@/app/components/share/text-generation'
|
||||
import Main from '@/app/components/share/text-generation'
|
||||
|
||||
const TextGeneration: FC<IMainProps> = () => {
|
||||
return (
|
||||
<Main isWorkflow />
|
||||
)
|
||||
}
|
||||
|
||||
export default React.memo(TextGeneration)
|
||||
Reference in New Issue
Block a user