mirror of
https://github.com/langgenius/dify.git
synced 2026-07-26 14:18:35 +08:00
13 lines
249 B
TypeScript
13 lines
249 B
TypeScript
import type { FC } from 'react'
|
|
import * as React from 'react'
|
|
|
|
export type IDatasetDetail = {
|
|
children: React.ReactNode
|
|
}
|
|
|
|
const AppDetail: FC<IDatasetDetail> = ({ children }) => {
|
|
return <>{children}</>
|
|
}
|
|
|
|
export default React.memo(AppDetail)
|