mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-10 03:16:51 +08:00
17 lines
336 B
TypeScript
17 lines
336 B
TypeScript
import type { FC } from 'react'
|
|
import React from 'react'
|
|
import ExploreClient from '@/app/components/explore'
|
|
export type IAppDetail = {
|
|
children: React.ReactNode
|
|
}
|
|
|
|
const AppDetail: FC<IAppDetail> = ({ children }) => {
|
|
return (
|
|
<ExploreClient>
|
|
{children}
|
|
</ExploreClient>
|
|
)
|
|
}
|
|
|
|
export default React.memo(AppDetail)
|