dify/web/app/(commonLayout)/explore/installed/[appId]/page.tsx

17 lines
344 B
TypeScript
Raw Normal View History

import type { FC } from 'react'
import React from 'react'
2023-05-25 16:59:47 +08:00
import Main from '@/app/components/explore/installed-app'
export type IInstalledAppProps = {
2023-05-25 16:59:47 +08:00
params: {
appId: string
}
}
const InstalledApp: FC<IInstalledAppProps> = ({ params: { appId } }) => {
2023-05-25 16:59:47 +08:00
return (
<Main id={appId} />
)
}
export default React.memo(InstalledApp)