mirror of
https://github.com/langgenius/dify.git
synced 2026-07-23 20:18:40 +08:00
13 lines
275 B
TypeScript
13 lines
275 B
TypeScript
'use client'
|
|
|
|
import { DeploymentsListStateBoundary } from './state'
|
|
import { DeploymentsListShell } from './ui/shell'
|
|
|
|
export function DeploymentsList() {
|
|
return (
|
|
<DeploymentsListStateBoundary>
|
|
<DeploymentsListShell />
|
|
</DeploymentsListStateBoundary>
|
|
)
|
|
}
|