dify/web/app/(commonLayout)/deployments/layout.tsx
Stephen Zhou 48452aefbc
feat: app deploy (#35670)
Co-authored-by: zhangx1n <zhangxin@dify.ai>
Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-06-17 09:28:43 +00:00

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