mirror of
https://github.com/langgenius/dify.git
synced 2026-09-03 06:53:26 +08:00
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>
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 />
|
|
</>
|
|
)
|
|
}
|