mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-10 03:16:51 +08:00
16 lines
322 B
TypeScript
16 lines
322 B
TypeScript
import React, { FC } from 'react'
|
|
import Main from '@/app/components/explore/installed-app'
|
|
|
|
export interface IInstalledAppProps {
|
|
params: {
|
|
appId: string
|
|
}
|
|
}
|
|
|
|
const InstalledApp: FC<IInstalledAppProps> = ({ params: {appId} }) => {
|
|
return (
|
|
<Main id={appId} />
|
|
)
|
|
}
|
|
export default React.memo(InstalledApp)
|