You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gcgj-dify-1.7.0/web/app/(commonLayout)/explore/installed/[appId]/page.tsx

17 lines
363 B
TypeScript

import type { FC } from 'react'
import React from 'react'
import Main from '@/app/components/explore/installed-app'
export type IInstalledAppProps = {
params: Promise<{
appId: string
}>
}
const InstalledApp: FC<IInstalledAppProps> = async ({ params }) => {
return (
<Main id={(await params).appId} />
)
}
export default React.memo(InstalledApp)