mirror of
https://github.com/langgenius/dify.git
synced 2026-07-26 14:18:35 +08:00
14 lines
265 B
TypeScript
14 lines
265 B
TypeScript
import type { ReactNode } from 'react'
|
|
import { DeployDrawer } from '@/features/deployments/deploy-drawer'
|
|
|
|
export default function DeploymentsLayout({ children }: {
|
|
children: ReactNode
|
|
}) {
|
|
return (
|
|
<>
|
|
{children}
|
|
<DeployDrawer />
|
|
</>
|
|
)
|
|
}
|