dify/web/features/deployments/detail/access/index.tsx
Stephen Zhou a14310fc62
refactor(web): organize deployment feature state (#38065)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
2026-06-27 07:34:46 +00:00

14 lines
371 B
TypeScript

'use client'
import { AccessChannelsSection } from './channels/section'
import { AccessPermissionsSection } from './permissions/section'
export function DeploymentAccess() {
return (
<div className="flex w-full max-w-[960px] min-w-0 flex-col gap-y-4 px-6 py-6 sm:px-20 sm:py-8">
<AccessChannelsSection />
<AccessPermissionsSection />
</div>
)
}