dify/web/app/(commonLayout)/deployments/layout.tsx

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 />
</>
)
}