mirror of
https://github.com/langgenius/dify.git
synced 2025-09-03 14:23:48 +00: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)
|