kikuepi's picture
Upload 4913 files
4304c6d verified
raw
history blame contribute delete
282 Bytes
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)