mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
14 lines
300 B
TypeScript
14 lines
300 B
TypeScript
import type { FC } from 'react'
|
|
import React from 'react'
|
|
|
|
import type { IMainProps } from '@/app/components/share/chat'
|
|
import Main from '@/app/components/share/text-generation'
|
|
|
|
const TextGeneration: FC<IMainProps> = () => {
|
|
return (
|
|
<Main />
|
|
)
|
|
}
|
|
|
|
export default React.memo(TextGeneration)
|