dify/web/features/deployments/list/index.tsx

13 lines
275 B
TypeScript

'use client'
import { DeploymentsListStateBoundary } from './state'
import { DeploymentsListShell } from './ui/shell'
export function DeploymentsList() {
return (
<DeploymentsListStateBoundary>
<DeploymentsListShell />
</DeploymentsListStateBoundary>
)
}