wwf
3 天以前 a430284aa21e3ae1f0d5654e55b2ad2852519cc2
app/(commonLayout)/explore/installed/[appId]/page.tsx
@@ -3,14 +3,14 @@
import Main from '@/app/components/explore/installed-app'
export type IInstalledAppProps = {
  params: Promise<{
  params: {
    appId: string
  }>
  }
}
const InstalledApp: FC<IInstalledAppProps> = async ({ params }) => {
const InstalledApp: FC<IInstalledAppProps> = ({ params: { appId } }) => {
  return (
    <Main id={(await params).appId} />
    <Main id={appId} />
  )
}
export default React.memo(InstalledApp)