您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516
  1. import type { FC } from 'react'
  2. import React from 'react'
  3. import ExploreClient from '@/app/components/explore'
  4. export type IAppDetail = {
  5. children: React.ReactNode
  6. }
  7. const AppDetail: FC<IAppDetail> = ({ children }) => {
  8. return (
  9. <ExploreClient>
  10. {children}
  11. </ExploreClient>
  12. )
  13. }
  14. export default React.memo(AppDetail)