mirror of
https://github.com/langgenius/dify.git
synced 2026-07-27 23:18:33 +08:00
7 lines
244 B
TypeScript
7 lines
244 B
TypeScript
import type { ReactNode } from 'react'
|
|
import { InstanceDetail } from '@/features/deployments/detail'
|
|
|
|
export default function InstanceDetailLayout({ children }: { children: ReactNode }) {
|
|
return <InstanceDetail>{children}</InstanceDetail>
|
|
}
|