mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
c67f626b66
Co-authored-by: John Wang <takatost@gmail.com> Co-authored-by: Jyong <718720800@qq.com> Co-authored-by: 金伟强 <iamjoel007@gmail.com>
17 lines
344 B
TypeScript
17 lines
344 B
TypeScript
import type { FC } from 'react'
|
|
import React from 'react'
|
|
import Main from '@/app/components/explore/installed-app'
|
|
|
|
export type IInstalledAppProps = {
|
|
params: {
|
|
appId: string
|
|
}
|
|
}
|
|
|
|
const InstalledApp: FC<IInstalledAppProps> = ({ params: { appId } }) => {
|
|
return (
|
|
<Main id={appId} />
|
|
)
|
|
}
|
|
export default React.memo(InstalledApp)
|