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

18 lines
385 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 }) => {
const appId = (await params).appId
return (
<Main id={appId} />
)
}
export default React.memo(InstalledApp)