add route for workflow app

This commit is contained in:
JzoNg
2024-03-14 17:03:02 +08:00
parent ac675c4443
commit 58922ba40b
5 changed files with 23 additions and 7 deletions

View 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)