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

layout.tsx 266B

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