mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-06-30 08:25:13 +08:00
17 lines
266 B
TypeScript
17 lines
266 B
TypeScript
import type { FC } from 'react'
|
|
import React from 'react'
|
|
|
|
export type IDatasetDetail = {
|
|
children: React.ReactNode
|
|
}
|
|
|
|
const AppDetail: FC<IDatasetDetail> = ({ children }) => {
|
|
return (
|
|
<>
|
|
{children}
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default React.memo(AppDetail)
|